Skip to content

Commit

Permalink
Fix sanitization of FLAC_CFLAGS.
Browse files Browse the repository at this point in the history
  • Loading branch information
ajacoutot authored and mpruett committed Mar 13, 2013
1 parent 34c2610 commit edb0f83
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
2013-03-12 Antoine Jacoutot <ajacoutot@bsdfrog.org>

* configure.ac:
Fix sanitization of FLAC_CFLAGS.

2013-03-10 Pino Toscano <toscano.pino@tiscali.it>

* test/TestUtilities.cpp,
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -135,7 +135,7 @@ FLAC_LIBS=""
if test -n "$PKG_CONFIG" ; then
if test "$enable_flac" = "yes" ; then
PKG_CHECK_MODULES([FLAC], [flac >= 1.2.1], [ac_cv_flac=yes], [ac_cv_flac=no])
FLAC_CFLAGS=`echo $FLAC_CFLAGS | $SED "s/FLAC$//"`
FLAC_CFLAGS=`echo $FLAC_CFLAGS | $SED "s:include/FLAC:include:"`
if test "$ac_cv_flac" = "no" ; then
enable_flac=no
fi
Expand Down

0 comments on commit edb0f83

Please sign in to comment.