diff options
author | 1998-12-15 00:34:13 +0000 | |
---|---|---|
committer | 1998-12-15 00:34:13 +0000 | |
commit | 855bc3cf86bc31ff3f3ea2de05e5f553855dbbad (patch) | |
tree | c4a7bce0595e5fa5ac7ecfaeb7ba676f2c7fd328 | |
parent | adjust argv and argc correctly when reading max from command line (diff) | |
download | wireguard-openbsd-855bc3cf86bc31ff3f3ea2de05e5f553855dbbad.tar.xz wireguard-openbsd-855bc3cf86bc31ff3f3ea2de05e5f553855dbbad.zip |
push CC and CFLAGS; wd@ics.nara-wu.ac.jp
-rw-r--r-- | usr.sbin/httpd/src/Makefile.bsd-wrapper | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/Makefile.bsd-wrapper b/usr.sbin/httpd/src/Makefile.bsd-wrapper index b0a49b4a67e..a3a67551eb7 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.10 1998/11/07 21:33:20 millert Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.11 1998/12/15 00:34:13 deraadt Exp $ .include <bsd.own.mk> PROG=httpd BINDIR=/usr/sbin @@ -16,6 +16,7 @@ helpers/GuessOS: config: .FORCE PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ + CC="${CC}" CFLAGS="${CFLAGS}" \ sh ${.CURDIR}/Configure -file ${.OBJDIR}/Configuration -make ${.CURDIR}/Makefile.tmpl Makefile: helpers/GuessOS @@ -27,6 +28,7 @@ Makefile: helpers/GuessOS chmod +x ${.CURDIR}/helpers/$$f ; \ done PATH="/bin:/usr/bin:/sbin:/usr/sbin" \ + CC="${CC}" CFLAGS="${CFLAGS}" \ sh ${.CURDIR}/Configure -file ${.OBJDIR}/Configuration -make ${.CURDIR}/Makefile.tmpl install: |