diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-07-07 18:53:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-07-07 18:53:03 +0000 |
commit | 87fc4aa1d80e539ec4c3092697fc086c0e92538d (patch) | |
tree | d0ed7a2d61d24aeadad4e0163f8ca2d9e61dde6d /usr.sbin/httpd/Makefile.bsd-wrapper | |
parent | 025de15d15bfbc089e2c174c993641fe05d99f97 (diff) |
pass CFLAGS to build process, so that optimization happens; js3guj@gold.ocn.ne.jp
Diffstat (limited to 'usr.sbin/httpd/Makefile.bsd-wrapper')
-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 |