diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2000-09-14 16:48:13 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2000-09-14 16:48:13 +0000 |
commit | 8ce033673d33e920011b569e6480ed55c1198664 (patch) | |
tree | 67e9d39851199d709418d9c6c0fdae6306020fd2 /gnu/usr.bin/binutils/readline/doc | |
parent | 3b4d789d9cb23fa717d5de4b79c043b463b303cd (diff) |
Some installation problems: older gnu programs don't know about DESTDIR,
but we have a mix here -> convert the old ones to heed DESTDIR.
Also, fix manpages installation in Makefile.bsd-wrapper
(INSTALL_MAN setting that got lost, bad MANDIR, don't set MANDIR if
PREFIX is the standard location)
Diffstat (limited to 'gnu/usr.bin/binutils/readline/doc')
-rw-r--r-- | gnu/usr.bin/binutils/readline/doc/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/binutils/readline/doc/Makefile.in b/gnu/usr.bin/binutils/readline/doc/Makefile.in index 1202fcff0ee..95da19c34d1 100644 --- a/gnu/usr.bin/binutils/readline/doc/Makefile.in +++ b/gnu/usr.bin/binutils/readline/doc/Makefile.in @@ -51,11 +51,11 @@ info: history.info readline.info dvi: history.dvi readline.dvi install-info: info - -parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \ + -parent=`echo $(DESTDIR)$(infodir)|sed -e 's@/[^/]*$$@@'`; \ if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi - -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi + -if [ -d $(DESTDIR)$(infodir) ] ; then true ; else mkdir $(DESTDIR)$(infodir) ; fi for i in *.info* ; do \ - $(INSTALL_DATA) $$i $(infodir)/$$i ; \ + $(INSTALL_DATA) $$i $(DESTDIR)$(infodir)/$$i ; \ done history.info: hist.texinfo hsuser.texinfo hstech.texinfo |