diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-12-10 16:58:13 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-12-10 16:58:13 +0000 |
commit | 026ec2a7d67ebca71552ea7af3feace744cf7146 (patch) | |
tree | ea6684d2a2b154d0305320fa73a08b8e246725fb /usr.sbin/httpd | |
parent | 37d2e7eb91b6a12860533298c1068d5ecbae2270 (diff) |
-O1 on alpha for now
ok theo
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/Makefile.bsd-wrapper | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/httpd/Makefile.bsd-wrapper b/usr.sbin/httpd/Makefile.bsd-wrapper index 2a0a89d6f7e..26cdd079544 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.36 2002/11/22 13:03:34 naddy Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.37 2002/12/10 16:58:12 henning Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -788,6 +788,10 @@ ICONFILES= \ .include <bsd.own.mk> +.if ${MACHINE_ARCH} == "alpha" +COPTS+=-O1 +.endif + all: prereq @cd ${.OBJDIR} && ${MAKE} |