Commit 632e19ae authored by mru's avatar mru

set correct source path when running configure using relative path


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4236 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d1bd93d4
......@@ -377,13 +377,13 @@ TARGET_OS=`( uname -s ) 2>&1`
esac
# find source path
# XXX: we assume an absolute path is given when launching configure,
# except in './configure' case.
source_path="`echo $0 | sed -e 's#/configure##'`"
source_path_used="yes"
if test -z "$source_path" -o "$source_path" = "." ; then
source_path=`pwd`
source_path_used="no"
else
source_path="`cd \"$source_path\"; pwd`"
fi
FFMPEG_CONFIGURATION=" "
......
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