diff options
author | Tharre <tharre3@gmail.com> | 2014-11-18 22:24:08 +0100 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2014-11-18 22:24:08 +0100 |
commit | 3380e012cd4973d7267496d0713c6ca681b0a4b7 (patch) | |
tree | c87ed069eea08b73bdcbd73230cee338aa9e1cdb | |
parent | 8363f2ec3fa56f3d63f2fb195a617f96fd63009d (diff) | |
download | redo-3380e012cd4973d7267496d0713c6ca681b0a4b7.tar.gz redo-3380e012cd4973d7267496d0713c6ca681b0a4b7.tar.xz redo-3380e012cd4973d7267496d0713c6ca681b0a4b7.zip |
Don't overwrite $CFLAGS and $LDFLAGS
-rw-r--r-- | out/config.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/out/config.sh b/out/config.sh index 75035a7..b38fbd9 100644 --- a/out/config.sh +++ b/out/config.sh @@ -4,5 +4,5 @@ else PREF="gcc" fi CC=${CC-$PREF} -CFLAGS="-g -Wall -Wextra -std=c99 -pedantic -Wno-gnu-statement-expression" -LDFLAGS="" +CFLAGS="-g -Wall -Wextra -std=c99 -pedantic -Wno-gnu-statement-expression $CFLAGS" +LDFLAGS="$LDFLAGS" |