diff options
author | 2000-07-07 18:53:02 +0000 | |
---|---|---|
committer | 2000-07-07 18:53:02 +0000 | |
commit | eb1aacdf7c7bd235f8521ce3e86234525e1c66ef (patch) | |
tree | ab67f1c69d33a86d269879636fd1254f82c3d6d7 | |
parent | From NetBSD: (diff) | |
download | wireguard-openbsd-eb1aacdf7c7bd235f8521ce3e86234525e1c66ef.tar.xz wireguard-openbsd-eb1aacdf7c7bd235f8521ce3e86234525e1c66ef.zip |
pass CFLAGS to build process, so that optimization happens; js3guj@gold.ocn.ne.jp
-rw-r--r-- | usr.sbin/httpd/Makefile.bsd-wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/Makefile.bsd-wrapper b/usr.sbin/httpd/Makefile.bsd-wrapper index c102cb3fbec..3896b16ea5e 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.13 2000/04/18 21:48:38 fgsch Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.14 2000/07/07 18:53:02 deraadt Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -441,7 +441,7 @@ all: prereq prereq: ${.OBJDIR}/config.status ${.OBJDIR}/config.status : ${.OBJDIR}/config.layout - cd ${.OBJDIR} && sh configure ${CONFIG_ARGS} + cd ${.OBJDIR} && OPTIM="${CFLAGS}" sh configure ${CONFIG_ARGS} .if !exists(${.OBJDIR}/config.layout) ${.OBJDIR}/config.layout: ${.CURDIR}/config.layout |