From 50aa8dfc96d2213161b8002c8be30628951ef163 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sun, 11 Jan 2004 08:08:37 +0000 Subject: [PATCH] Update changes from debian isync package 0.9.1-4: * Use configure's --build and --host options to prevent wrong optimizations (such as building for sparc64 rather than for sparc). --- debian/changelog | 11 +++++++++++ debian/rules | 5 ++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 508b6fa..402da0c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,17 @@ isync (0.9.2-1) unstable; urgency=low -- Theodore Y. Ts'o Sun, 11 Jan 2004 02:38:48 -0500 +isync (0.9.1-4) unstable; urgency=low + + * The "Why do I keep adding such stupid bugs?" release. + * Remove the extra parenthesis that caused UID FETCH syntax errors, + thanks to Niels den Otter for pointing the bug and giving the + solution. (Closes: #224803) + * Use configure's --build and --host options to prevent wrong + optimizations (such as building for sparc64 rather than for sparc). + + -- Nicolas Boullis Wed, 7 Jan 2004 01:06:53 +0100 + isync (0.9.1-3) unstable; urgency=low * Do not segfault when using both tunneled end non-tunneled connections, diff --git a/debian/rules b/debian/rules index c2ade2e..06235af 100755 --- a/debian/rules +++ b/debian/rules @@ -9,10 +9,13 @@ else CFLAGS += -O2 endif +DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + build: build-stamp build-stamp: patch-stamp dh_testdir - ./configure --prefix=/usr --mandir=/usr/share/man + ./configure --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) --prefix=/usr --mandir=/usr/share/man $(MAKE) CFLAGS="$(CFLAGS)" touch build-stamp