Your message dated Sat, 08 Nov 2008 11:21:27 +0100
with message-id <[EMAIL PROTECTED]>
and subject line 
has caused the Debian Bug report #501545,
regarding Fix the order of updated config.{guess,sub}
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
501545: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=501545
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: openntpd
Severity: normal
Tags: patch

The debian/rules script of openntpd is wrong in the sense that the
config.{guess,sub} things should be updated before the configure
actually happens and not during the clean phase.

The patch attached fixes this.

As a side effect, I have also fixed the problem that diff.gz contained
changes to the sources outside the debian/patches directory.

So, this patch fixes actually two things, and my other patch fixes
another one.


Hope this helps, Rogério Brito.

-- 
Rogério Brito : [EMAIL PROTECTED],ime.usp}.br : GPG key 1024D/7C2CAEB8
http://www.ime.usp.br/~rbrito : http://meusite.mackenzie.com.br/rbrito
Projects: algorithms.berlios.de : lame.sf.net : vrms.alioth.debian.org
diff -u openntpd-3.9p1/debian/rules openntpd-3.9p1/debian/rules
--- openntpd-3.9p1/debian/rules
+++ openntpd-3.9p1/debian/rules
@@ -29,6 +27,13 @@
 config-stamp: configure patch
 	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
+
 	# Configuring package
 	CFLAGS="$(CFLAGS)" ./configure --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --sysconfdir=/etc/openntpd --with-privsep-user=ntpd --with-privsep-path=/var/run/openntpd
 
@@ -50,14 +55,8 @@
 	# Cleaning package
 	[ ! -f Makefile ] || $(MAKE) distclean
 	rm -f build-stamp config-stamp
-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 sure we regenerate that file.
-	rm -f y.tab.c
+	rm -f y.tab.c config.sub config.guess config.log
 
 	dh_clean
 
reverted:

--- End Message ---
--- Begin Message ---
Version: 3.9p1+debian-1

-- 
Address:        Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:          [EMAIL PROTECTED]
Internet:       http://people.panthera-systems.net/~daniel-baumann/


--- End Message ---

Reply via email to