summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-07-14 11:21:37 +0000
committerDiego Biurrun <diego@biurrun.de>2006-07-14 11:21:37 +0000
commitd14ed1f21b598262cb3030ed30fd6a152acf6c35 (patch)
tree2b6e880ac464a7b4bc202e4ed176e633cb4d6472
parent6b7f5b3eb841b9319d4a349110c416cd1d43d4f8 (diff)
10l: the ${prefix} variable should not be expanded when setting path defaults.
Originally committed as revision 5742 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 64be2bf24a..f96149aa08 100755
--- a/configure
+++ b/configure
@@ -327,10 +327,10 @@ TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
logging="yes"
logfile="config.err"
prefix="/usr/local"
-libdir="${prefix}/lib"
-incdir="${prefix}/include/ffmpeg"
-mandir="${prefix}/man"
-bindir="${prefix}/bin"
+libdir='${prefix}/lib'
+incdir='${prefix}/include/ffmpeg'
+mandir='${prefix}/man'
+bindir='${prefix}/bin'
cross_prefix=""
cross_compile="no"
cc="gcc"