diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-04-18 21:48:39 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-04-18 21:48:39 +0000 |
commit | 333ec701ac3e7a013ec330538d23d0b2e6ce86e7 (patch) | |
tree | e2bad36f7271074c088ffcdd8bab26bc1e0bb25f /usr.sbin/httpd/Makefile.bsd-wrapper | |
parent | 25a9f33de9bf78951f17a1af6f8e948506214867 (diff) |
strip htdigest and htpasswd before installing.
Diffstat (limited to 'usr.sbin/httpd/Makefile.bsd-wrapper')
-rw-r--r-- | usr.sbin/httpd/Makefile.bsd-wrapper | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/httpd/Makefile.bsd-wrapper b/usr.sbin/httpd/Makefile.bsd-wrapper index 83a160a5dd4..c102cb3fbec 100644 --- a/usr.sbin/httpd/Makefile.bsd-wrapper +++ b/usr.sbin/httpd/Makefile.bsd-wrapper @@ -1,5 +1,5 @@ # Build wrapper for Apache -# $OpenBSD: Makefile.bsd-wrapper,v 1.12 2000/01/28 18:24:19 beck Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.13 2000/04/18 21:48:38 fgsch Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -466,8 +466,8 @@ install: maninstall @-for i in ${BINFILES}; do \ j=`basename $$i`; \ echo "Installing ${DESTDIR}${HTTPD_BINDIR}/$$j"; \ - ${INSTALL} ${INSTALL_COPY} -g ${BINGRP} -m 555 \ - ${.OBJDIR}/$$i ${DESTDIR}${HTTPD_BINDIR}; \ + ${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP} -g ${BINGRP} \ + -m 555 ${.OBJDIR}/$$i ${DESTDIR}${HTTPD_BINDIR}; \ done @-for i in ${SBINFILES}; do \ j=`basename $$i`; \ |