Skip to content

Commit

Permalink
configure.ac: fix CFLAGS append
Browse files Browse the repository at this point in the history
Some autotools/m4 versions seem to lack support of '+=' for appending
data to existing variables. This modification fixes this for the
final CFLAGS construction.
  • Loading branch information
obgm committed Jul 7, 2016
1 parent cb6d3c4 commit 6a5b12a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ PREDEFINED_CFLAGS=`echo $ADDITIONAL_CFLAGS | sed -e 's/-D//g'`
AC_SUBST(PREDEFINED_CFLAGS)

# And finaly combining the CFLAGS together ...
CFLAGS+=" $ADDITIONAL_CFLAGS"
CFLAGS="$CFLAGS $ADDITIONAL_CFLAGS"

# Override the various template files, currently just makefiles and the
# pkgconfig *.pc file.
Expand Down

0 comments on commit 6a5b12a

Please sign in to comment.