* 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@.
This commit is contained in:
Roland McGrath 1996-07-02 21:57:31 +00:00
parent f49bc43fc0
commit 66da789f8d
3 changed files with 11 additions and 3 deletions

View File

@ -1,5 +1,9 @@
Tue Jul 2 10:44:37 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* 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.

View File

@ -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 \

View File

@ -10,11 +10,13 @@ Source: glibc-@VERSION@.tar.gz
%setup
%build
configure --prefix=/usr
cat >configparms <<EOF
configure --prefix=@prefix@
if test x@prefix@ = /usr; then
cat >configparms <<EOF
slibdir=/lib
sysconfdir=/etc
EOF
fi
make
%install