summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorGabriel A. Devenyi <gdevenyi@gmail.com>2020-01-28 10:12:25 -0500
committerHans Kristian Rosbach <hk-github@circlestorm.org>2020-02-07 16:45:52 +0100
commit0693caad24f682729fffd6d840a1900ee2dbebdb (patch)
tree6620c4cc748befe2d22ddb04b9401a0c4089d95e /configure
parent783f2612583d693b008495da57b82a15b3f4aacc (diff)
Fix double specification of -O2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index fc37ea7..9fde2ec 100755
--- a/configure
+++ b/configure
@@ -332,7 +332,7 @@ if test "$gcc" -eq 1 && ($cc $CFLAGS -c $test.c) >> configure.log 2>&1; then
LDFLAGS="${LDFLAGS} ${ARCHS}"
fi
CFLAGS="${CFLAGS} -Wall"
- SFLAGS="-O2 ${CFLAGS} -fPIC"
+ SFLAGS="${CFLAGS} -fPIC"
if test $native -eq 1; then
CFLAGS="${CFLAGS} -march=native"
SFLAGS="${SFLAGS} -march=native"