diff options
author | 2002-04-30 16:21:34 +0000 | |
---|---|---|
committer | 2002-04-30 16:21:34 +0000 | |
commit | 62efbf21f88c299ab3e68c8b7a6e669015231646 (patch) | |
tree | e128c6ab3dc0793db0e1e1998529fafc8c5656ec | |
parent | - increase sample size from 1 byte to 4 bytes so that we can detect (diff) | |
download | wireguard-openbsd-62efbf21f88c299ab3e68c8b7a6e669015231646.tar.xz wireguard-openbsd-62efbf21f88c299ab3e68c8b7a6e669015231646.zip |
use ${DESTDIR} in install* stuff. From form@.
millert@ ok
-rw-r--r-- | gnu/usr.bin/bc/bc/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/bc/bc/Makefile.in b/gnu/usr.bin/bc/bc/Makefile.in index 26e25c491ea..24db7d355c3 100644 --- a/gnu/usr.bin/bc/bc/Makefile.in +++ b/gnu/usr.bin/bc/bc/Makefile.in @@ -297,10 +297,10 @@ libmath.h: libmath.b install-data-local: if grep -s "define BC_MATH_FILE" ../config.h; \ - then $(mkinstalldirs) $(libdir); \ - rm -f $(libdir)/libmath.b; \ - $(INSTALL_DATA) $(srcdir)/libmath.b $(libdir); \ - chmod 444 $(libdir)/libmath.b; \ + then $(mkinstalldirs) $(DESTDIR)$(libdir); \ + rm -f $(DESTDIR)$(libdir)/libmath.b; \ + $(INSTALL_DATA) $(srcdir)/libmath.b $(DESTDIR)$(libdir); \ + chmod 444 $(DESTDIR)$(libdir)/libmath.b; \ else true; \ fi fbc: $(fbcOBJ) |