Skip to content

Commit

Permalink
configure.ac: bugfix for CXXFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
agordon committed Nov 8, 2013
1 parent 483f765 commit 09c3996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ esac],[debug=true])
if test "$debug" = "true"
then
CFLAGS="${CFLAGS} -DDEBUG -g -O1"
CXXFLAGS="${CFLAGS} -DDEBUG -g -O1"
CXXFLAGS="${CXXFLAGS} -DDEBUG -g -O1"
else
CFLAGS="${CFLAGS} -O3"
CXXFLAGS="${CFLAGS} -O3"
CXXFLAGS="${CXXFLAGS} -O3"
fi

dnl 'all-static' marco copied from subversion's configure.ac
Expand Down

0 comments on commit 09c3996

Please sign in to comment.