From 63938c071b084f9c1a13cb21ebe95579c2a67c8b Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 4 Dec 2012 10:19:47 -0600 Subject: Making it so that clean doesn't have cli in it --- debian/rules | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debian/rules b/debian/rules index f6144f4..dd78987 100755 --- a/debian/rules +++ b/debian/rules @@ -17,6 +17,10 @@ CFLAGS += -fPIC %: dh $@ --with autoreconf,python2,cli,gir +# Note: No cli here so that the pbuilder stuff works +override_dh_clean: + dh clean --with autoreconf,python2,gir + override_dh_autoreconf: NOCONFIGURE=1 dh_autoreconf ./autogen.sh -- cgit v1.2.3 From 3dceb092c0ff1bb26f1cab88f29541ba1571d30a Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 4 Dec 2012 10:31:11 -0600 Subject: Going with just dh_clean --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index dd78987..db4f79c 100755 --- a/debian/rules +++ b/debian/rules @@ -19,7 +19,7 @@ CFLAGS += -fPIC # Note: No cli here so that the pbuilder stuff works override_dh_clean: - dh clean --with autoreconf,python2,gir + dh_clean override_dh_autoreconf: NOCONFIGURE=1 dh_autoreconf ./autogen.sh -- cgit v1.2.3 From d2f16cb16d6d0595d70a5cb375f519342ae83556 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Tue, 4 Dec 2012 11:01:40 -0600 Subject: Trying to be more direct --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index db4f79c..c4f16bc 100755 --- a/debian/rules +++ b/debian/rules @@ -18,7 +18,7 @@ CFLAGS += -fPIC dh $@ --with autoreconf,python2,cli,gir # Note: No cli here so that the pbuilder stuff works -override_dh_clean: +clean: dh_clean override_dh_autoreconf: -- cgit v1.2.3