configure.ac: fix quoting so it works for fedora autotools too
authorThomas Vander Stichele <thomas@apestaart.org>
Fri, 15 Dec 2006 14:59:31 +0000 (14:59 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Fri, 15 Dec 2006 14:59:31 +0000 (14:59 +0000)
Original commit message from CVS:
* configure.ac:
fix quoting so it works for fedora autotools too

ChangeLog
configure.ac

index dd27e6e..17dd444 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * configure.ac:
+         fix quoting so it works for fedora autotools too
+
 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
 
        * docs/Makefile.am:
index 4ea78f0..4b8eb10 100644 (file)
@@ -186,15 +186,15 @@ if test "x$with_system_ffmpeg" = "xyes"; then
   CPPFLAGS="$saved_CPPFLAGS"
   AC_DEFINE([FFMPEG_SOURCE], ["system install"], [Describes where the FFmpeg libraries come from.])
 else
-  FFMPEG_CFLAGS='-I $(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \
-                 -I $(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \
-                 -I $(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec'
-  FFMPEG_LIBS='$(top_builddir)/gst-libs/ext/ffmpeg/libavformat/libavformat.la'
-  POSTPROC_CFLAGS='-I $(top_srcdir)/gst-libs/ext/ffmpeg/libpostproc \
-                   -I $(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \
-                   -I $(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \
-                   -I $(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec'
-  POSTPROC_LIBS='$(top_builddir)/gst-libs/ext/ffmpeg/libavcodec/libavcodec.la'
+  FFMPEG_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \
+                 -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \
+                 -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec"
+  FFMPEG_LIBS="\$(top_builddir)/gst-libs/ext/ffmpeg/libavformat/libavformat.la"
+  POSTPROC_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/ffmpeg/libpostproc \
+                   -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \
+                   -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \
+                   -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec"
+  POSTPROC_LIBS="\$(top_builddir)/gst-libs/ext/ffmpeg/libavcodec/libavcodec.la"
   FFMPEG_SUBDIRS=gst-libs
   AC_DEFINE(HAVE_AVI_H)
   AC_DEFINE([FFMPEG_SOURCE], ["local snapshot"], [Describes where the FFmpeg libraries come from.])