diff options
-rw-r--r-- | debian/changelog | 15 | ||||
-rwxr-xr-x | debian/rules | 8 |
2 files changed, 23 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 224e95192..914896f0c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +xine-lib (1-beta2-3) unstable; urgency=high + + * A backslash got lost in the last upload. + gcc-3.2 should finally be used on HPPA now... + + -- Siggi Langauf <siggi@debian.org> Thu, 2 Jan 2003 20:39:51 +0100 + +xine-lib (1-beta2-2) unstable; urgency=low + + working around autobuilder bugs: + - actually using gcc-3.2 on HPPA + - uploading i386 binaries, since the i386 autobuilder dies from #165458 + + -- Siggi Langauf <siggi@debian.org> Thu, 2 Jan 2003 12:11:24 +0100 + xine-lib (1-beta2-1) unstable; urgency=low * new upstream release diff --git a/debian/rules b/debian/rules index 6babe1941..92ecac338 100755 --- a/debian/rules +++ b/debian/rules @@ -54,10 +54,18 @@ ifeq (,$(findstring optimize,$(DEB_BUILD_OPTIONS))) DEB_HOST_GNU_OPTION := --host=$(DEB_HOST_GNU_TYPE) endif +ifeq (,$(findstring hppa-,$(DEB_HOST_GNU_TYPE))) + OVERRIDE_CC=gcc +else + #on HPPA + OVERRIDE_CC=gcc-3.2 +endif + configure: configure-stamp configure-stamp: dh_testdir + env CC=$(OVERRIDE_CC) \ ./configure --prefix=/usr --mandir=\$${prefix}/share/man \ $(DEB_HOST_GNU_OPTION) touch configure-stamp |