[SCM] libav/experimental: Do not add quotes around SRC_PATH, the quoting has to be done at a later stage else the quotes may appear in the middle of a path if it is constructed with SRC_PATH.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:46:31 UTC 2013


The following commit has been merged in the experimental branch:
commit 64018fd015643e7ea476f465ddf539cc9a1d3163
Author: Diego Biurrun <diego at biurrun.de>
Date:   Sun Feb 12 22:56:12 2006 +0000

    Do not add quotes around SRC_PATH, the quoting has to be done at a later
    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

diff --git a/configure b/configure
index cd7645ad..63e4150 100755
--- 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

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list