aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-03-07 12:02:57 -0600
committerBrent Cook <bcook@openbsd.org>2015-03-07 12:02:57 -0600
commit213eb9465e64c1d0d74ab93b9d94a88c03f2ca43 (patch)
tree36116931ad408ea41399cc1bb8c127d2d77abe2c
parentd193b171b60008868a5dea02073cfa2305b6d01f (diff)
downloadportable-213eb9465e64c1d0d74ab93b9d94a88c03f2ca43.tar.gz
portable-213eb9465e64c1d0d74ab93b9d94a88c03f2ca43.tar.bz2
portable-213eb9465e64c1d0d74ab93b9d94a88c03f2ca43.zip
avoid doubling user-specified cflags
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 24eb24f..3a0ef16 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,8 +9,8 @@ AC_CONFIG_MACRO_DIR([m4])
9 9
10m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) 10m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
11 11
12AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS") 12AC_SUBST([USER_CFLAGS], "$CFLAGS")
13CFLAGS="$CFLAGS -Wall -std=gnu99 -g" 13CFLAGS="-Wall -std=gnu99 -g -O2"
14 14
15case $host_os in 15case $host_os in
16 *darwin*) 16 *darwin*)