Do not add quotes around SRC_PATH, the quoting has to be done at a later
authorDiego Biurrun <diego@biurrun.de>
Sun, 12 Feb 2006 22:56:12 +0000 (22:56 +0000)
committerDiego Biurrun <diego@biurrun.de>
Sun, 12 Feb 2006 22:56:12 +0000 (22:56 +0000)
stage else the quotes may appear in the middle of a path if it is
constructed with SRC_PATH.

Originally committed as revision 5010 to svn://svn.ffmpeg.org/ffmpeg/trunk

configure

index cd7645a..63e4150 100755 (executable)
--- a/configure
+++ b/configure
@@ -1892,7 +1892,7 @@ if test "$source_path_used" = "yes" ; then
     done
     echo "SRC_PATH=$source_path" >> config.mak
 else
-    echo "SRC_PATH='$source_path'" >> config.mak
+    echo "SRC_PATH=$source_path" >> config.mak
 fi
 
 if test "$amr_wb" = "yes" ; then