diff options
author | 1998-10-06 06:39:13 +0000 | |
---|---|---|
committer | 1998-10-06 06:39:13 +0000 | |
commit | eddc415255f9c7a97b2492eeaad9c40b4f7bb773 (patch) | |
tree | 9f888aaec0cf724baf8c63323824973d09fd2d56 | |
parent | fix the SIOCGIFCONF code; bug found by markc@ (diff) | |
download | wireguard-openbsd-eddc415255f9c7a97b2492eeaad9c40b4f7bb773.tar.xz wireguard-openbsd-eddc415255f9c7a97b2492eeaad9c40b4f7bb773.zip |
use /usr/bin/lndir
-rw-r--r-- | usr.sbin/httpd/src/Makefile.bsd-wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/src/Makefile.bsd-wrapper b/usr.sbin/httpd/src/Makefile.bsd-wrapper index 809429a924e..17472848402 100644 --- a/usr.sbin/httpd/src/Makefile.bsd-wrapper +++ b/usr.sbin/httpd/src/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.6 1998/10/01 17:47:56 beck Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.7 1998/10/06 06:39:13 deraadt Exp $ .include <bsd.own.mk> PROG=httpd BINDIR=/usr/sbin @@ -12,7 +12,7 @@ all: Makefile .FORCE: .IGNORE helpers/GuessOS: - lndir -e Makefile.bsd-wrapper -e obj ${.CURDIR} ${.OBJDIR}; touch ${.OBJDIR}/Configuration + /usr/bin/lndir -e Makefile.bsd-wrapper -e obj ${.CURDIR} ${.OBJDIR}; touch ${.OBJDIR}/Configuration config: .FORCE sh ${.CURDIR}/Configure -file ${.CURDIR}/Configuration -make ${.CURDIR}/Makefile.tmpl |