diff options
author | Roland McGrath <roland@gnu.org> | 1996-07-02 21:57:31 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-07-02 21:57:31 +0000 |
commit | 66da789f8dfa5e42ff4aa5d1ca4dab93ed0beb4f (patch) | |
tree | 5f258e16fba807e9ca092841e648051cec13340b /rpm/Makefile | |
parent | f49bc43fc0a6879424777f95eff12cb688afe89e (diff) | |
download | glibc-66da789f8dfa5e42ff4aa5d1ca4dab93ed0beb4f.tar glibc-66da789f8dfa5e42ff4aa5d1ca4dab93ed0beb4f.tar.gz glibc-66da789f8dfa5e42ff4aa5d1ca4dab93ed0beb4f.tar.bz2 glibc-66da789f8dfa5e42ff4aa5d1ca4dab93ed0beb4f.zip |
* 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@.
Diffstat (limited to 'rpm/Makefile')
-rw-r--r-- | rpm/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rpm/Makefile b/rpm/Makefile index 148a3a19d6..22544506f6 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 \ |