diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2002-11-22 13:03:35 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2002-11-22 13:03:35 +0000 |
commit | 98e23b0a8580dc062de85b996aa4b8e0803590f5 (patch) | |
tree | 9606241f0d5bd0e093ff15ab78dd16bdd6e63e7b /usr.sbin/httpd/Makefile.bsd-wrapper | |
parent | 9a12b627cf863d7d925d58058aabd727f6bce322 (diff) |
honor COPTS; ok henning@
Diffstat (limited to 'usr.sbin/httpd/Makefile.bsd-wrapper')
-rw-r--r-- | usr.sbin/httpd/Makefile.bsd-wrapper | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/httpd/Makefile.bsd-wrapper b/usr.sbin/httpd/Makefile.bsd-wrapper index 4940c1ceafd..2a0a89d6f7e 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.35 2002/10/07 21:00:58 henning Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.36 2002/11/22 13:03:34 naddy Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -794,7 +794,8 @@ all: prereq prereq: ${.OBJDIR}/config.status ${.OBJDIR}/config.status : ${.OBJDIR}/config.layout - @cd ${.OBJDIR} && CC="${CC}" LD_SHLIB="${CC}" OPTIM="${CFLAGS}" \ + @cd ${.OBJDIR} && CC="${CC}" LD_SHLIB="${CC}" \ + OPTIM="${CFLAGS} ${COPTS}" \ PATH="/sbin:/usr/sbin:/bin:/usr/bin" \ sh configure ${CONFIG_ARGS} |