+cdck (0.7.0-2) UNRELEASED; urgency=low
+
+ * debian/rules: remove config.{sub,guess} in clean target and copy them
+ over in configure target as a preparation for source format "3.0 (quilt)";
+ thanks to Raphaël Hertzog for the bug report (closes: #482726).
+
+ -- gregor herrmann <gregoa@debian.org> Sat, 24 May 2008 20:27:54 +0200
+
cdck (0.7.0-1) unstable; urgency=low
* New upstream release: adds a warning about misleading error output
config.status: configure
dh_testdir
+
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+ cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+ cp -f /usr/share/misc/config.guess config.guess
+endif
+
./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS=" -Wl,-z,defs"
clean: unpatch
dh_testdir
dh_testroot
+ rm -f config.sub config.guess
rm -f build-stamp install-stamp
-
[ ! -f Makefile ] || $(MAKE) distclean
-ifneq "$(wildcard /usr/share/misc/config.sub)" ""
- cp -f /usr/share/misc/config.sub config.sub
-endif
-ifneq "$(wildcard /usr/share/misc/config.guess)" ""
- cp -f /usr/share/misc/config.guess config.guess
-endif
-
dh_clean
install: install-stamp