From: Roland McGrath Date: Tue, 2 Jul 1996 21:57:31 +0000 (+0000) Subject: * rpm/template (%build): Use @prefix@ instead of always /usr. X-Git-Tag: cvs/libc-960703~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66da789f8dfa5e42ff4aa5d1ca4dab93ed0beb4f;p=thirdparty%2Fglibc.git * rpm/template (%build): Use @prefix@ instead of always /usr. Set up configparms only if @prefix@ is in fact /usr. * rpm/Makefile ($(config)): Substitute $(prefix) for @prefix@. --- diff --git a/ChangeLog b/ChangeLog index 931f1cd89dd..be5ffcef43c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ Tue Jul 2 10:44:37 1996 Roland McGrath + * rpm/template (%build): Use @prefix@ instead of always /usr. + Set up configparms only if @prefix@ is in fact /usr. + * rpm/Makefile ($(config)): Substitute $(prefix) for @prefix@. + * elf/Makefile: Add missing endif. * nss/nss_files/files-ethers.c (ntohost): Fix db key. diff --git a/rpm/Makefile b/rpm/Makefile index 148a3a19d65..22544506f69 100644 --- a/rpm/Makefile +++ b/rpm/Makefile @@ -64,7 +64,9 @@ instvars = include lib bin sbin data others # Generate the rpm spec file for this configuration. $(config): template $(distinfo) Makefile rm -f $@.new - (sed -e 's%@VERSION@%$(version)%g' $<; \ + (sed -e 's%@VERSION@%$(version)%g' \ + -e 's%@prefix@%$(prefix)%g' \ + $<; \ ($(foreach var,$(instvars),\ list='$(install-$(var))'; \ for f in $$list; do \ diff --git a/rpm/template b/rpm/template index f4c2e9f7d77..7b03ed5ab20 100644 --- a/rpm/template +++ b/rpm/template @@ -10,11 +10,13 @@ Source: glibc-@VERSION@.tar.gz %setup %build -configure --prefix=/usr -cat >configparms <configparms <