Commit d14ed1f2 authored by Diego Biurrun's avatar Diego Biurrun

10l: the ${prefix} variable should not be expanded when setting path defaults.

Originally committed as revision 5742 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6b7f5b3e
...@@ -327,10 +327,10 @@ TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h" ...@@ -327,10 +327,10 @@ TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
logging="yes" logging="yes"
logfile="config.err" logfile="config.err"
prefix="/usr/local" prefix="/usr/local"
libdir="${prefix}/lib" libdir='${prefix}/lib'
incdir="${prefix}/include/ffmpeg" incdir='${prefix}/include/ffmpeg'
mandir="${prefix}/man" mandir='${prefix}/man'
bindir="${prefix}/bin" bindir='${prefix}/bin'
cross_prefix="" cross_prefix=""
cross_compile="no" cross_compile="no"
cc="gcc" cc="gcc"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment