Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Allow CPPFLAGS, CFLAGS, and LDFLAGS to be passed through configure
This changes the configure script from unconditionally assigning CPPFLAGS,
CFLAGS, and LDFLAGS to the empty string, to only assigning them to the empty
string if they are unset.
  • Loading branch information
fitzgen committed Jun 5, 2016
1 parent 88187f7 commit 5d52b0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure
Expand Up @@ -37,9 +37,9 @@ installman=""
installschemename="scheme"
installpetitename="petite"
installscriptname="scheme-script"
CPPFLAGS=""
CFLAGS=""
LDFLAGS=""
: ${CPPFLAGS:=""}
: ${CFLAGS:=""}
: ${LDFLAGS:=""}

case `uname` in
Linux)
Expand Down

0 comments on commit 5d52b0b

Please sign in to comment.