r307 - dvb/dvbsnoop/trunk/debian
Thomas Schmidt
pkg-vdr-dvb-changes@lists.alioth.debian.org
Fri, 25 Mar 2005 19:35:51 +0000
Author: tschmidt
Date: 2005-03-25 19:35:51 +0000 (Fri, 25 Mar 2005)
New Revision: 307
Modified:
dvb/dvbsnoop/trunk/debian/changelog
dvb/dvbsnoop/trunk/debian/rules
Log:
dvbsnoop:
* Moved copying of config.{sub,guess} now to config.status so
these files will be copied before configure will run
* prepared 1.3.77-3 for upload
Modified: dvb/dvbsnoop/trunk/debian/changelog
===================================================================
--- dvb/dvbsnoop/trunk/debian/changelog 2005-03-25 19:10:29 UTC (rev 306)
+++ dvb/dvbsnoop/trunk/debian/changelog 2005-03-25 19:35:51 UTC (rev 307)
@@ -1,12 +1,10 @@
dvbsnoop (1.3.77-3) unstable; urgency=low
- * NOT RELEASED YET
-
* Thomas Schmidt <tschmidt@debian.org>
- Changed to Section: misc and Priority: extra, to match the
override file
- Moved copying of config.sub and config.guess from clean-patched
- target to the build target
+ target to the config.status target
-- Debian VDR Team <pkg-vdr-dvb-devel@lists.alioth.debian.org> Fri, 25 Mar 2005 16:58:38 +0100
Modified: dvb/dvbsnoop/trunk/debian/rules
===================================================================
--- dvb/dvbsnoop/trunk/debian/rules 2005-03-25 19:10:29 UTC (rev 306)
+++ dvb/dvbsnoop/trunk/debian/rules 2005-03-25 19:35:51 UTC (rev 307)
@@ -32,6 +32,14 @@
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
+
# Add here commands to configure the package.
CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
@@ -42,13 +50,6 @@
dh_testdir
# Add here commands to compile the package.
-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
-
$(MAKE)
touch build-stamp