From a2894a5e9a3ee9cb1c7344b59b9aba6dee6b79df Mon Sep 17 00:00:00 2001 From: Elliot Lee Date: Tue, 15 Jul 2003 13:38:58 +0000 Subject: [PATCH] 8.0.27-1 --- macros | 7 +++++-- redhat-rpm-config.spec | 6 +++++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/macros b/macros index e2c34b7..5168d9c 100644 --- a/macros +++ b/macros @@ -30,10 +30,13 @@ CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ; \ CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \ FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \ - for i in $(find . -name config.guess -o config.sub 2>/dev/null) ; do \ + for i in $(find . -name config.guess -o -name config.sub) ; do \ [ -f /usr/lib/rpm/redhat/$(basename $i) ] && %{__rm} -f $i && %{__cp} -fv /usr/lib/rpm/redhat/$(basename $i) $i ; \ done ; \ - ./configure --prefix=%{_prefix} \\\ + ./configure --host=%{_host} --build=%{_build} \\\ + --target=%{_target_platform} \\\ + --program_prefix=%{?_program_prefix} \\\ + --prefix=%{_prefix} \\\ --exec-prefix=%{_exec_prefix} \\\ --bindir=%{_bindir} \\\ --sbindir=%{_sbindir} \\\ diff --git a/redhat-rpm-config.spec b/redhat-rpm-config.spec index 15be672..04ff257 100644 --- a/redhat-rpm-config.spec +++ b/redhat-rpm-config.spec @@ -1,6 +1,6 @@ Summary: Red Hat specific rpm configuration files. Name: redhat-rpm-config -Version: 8.0.26 +Version: 8.0.27 Release: 1 License: GPL Group: Development/System @@ -31,6 +31,10 @@ rm -rf ${RPM_BUILD_ROOT} %{_prefix}/lib/rpm/redhat %changelog +* Tue Jul 15 2003 Elliot Lee 8.0.27-1 +- Fix broken configure macro find for config.guess/config.sub +- Put host/target/build back for now + * Mon Jul 7 2003 Jens Petersen - 8.0.26-1 - preserve the vendor field when VENDOR not set - put VENDOR in the final i386-libc line, not the tentative one