diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2010-10-03 19:47:19 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2010-10-03 19:47:19 +0000 |
commit | 8abe6ef5c9898eb9fc8d30f5edad18b8ebfad734 (patch) | |
tree | 1ed244f969a7254288cce558bd8086778e793754 /regress | |
parent | 7257f2aae1fd935ba7c8379a63ad8bd07c80b9fe (diff) |
don't use non-standard CFLAGS; ok miod@, deraadt@
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libssl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libssl/Makefile b/regress/lib/libssl/Makefile index 2a5fbb4119d..fbe27fd7389 100644 --- a/regress/lib/libssl/Makefile +++ b/regress/lib/libssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 2008/09/06 12:21:54 djm Exp $ +# $OpenBSD: Makefile,v 1.14 2010/10/03 19:47:18 naddy Exp $ CLEANFILES+= testdsa.key testdsa.pem rsakey.pem rsacert.pem dsa512.pem @@ -38,7 +38,7 @@ SHA512TEST= sha512t SHATEST= shatest SSLDIR= ${.CURDIR}/../../../lib/libssl/src/crypto -CFLAGS= -O -g -Wall -I${SSLDIR} -I${SSLDIR}/.. +CFLAGS+= -Wall -I${SSLDIR} -I${SSLDIR}/.. CLEANFILES+= $(BNTEST).c $(ECTEST).c $(HMACTEST).c \ $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \ |