Commit 783be1b9 authored by diego's avatar diego

Disallow out-of-tree builds with config.h in the source tree.

A config.h present in the source tree takes precedence over a config.h
in the build tree, which can possibly result in an incorrect build.
patch by matthieu castet, castet.matthieu free fr


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17994 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dbb2ac42
...@@ -1212,6 +1212,8 @@ else ...@@ -1212,6 +1212,8 @@ else
source_path="$(cd "$source_path"; pwd)" source_path="$(cd "$source_path"; pwd)"
echo "$source_path" | grep -q '[[:blank:]]' && echo "$source_path" | grep -q '[[:blank:]]' &&
die "Out of tree builds are impossible with whitespace in source path." die "Out of tree builds are impossible with whitespace in source path."
test -e "$source_path/config.h" &&
die "Out of tree builds are impossible with config.h in source dir."
fi fi
FFMPEG_CONFIGURATION="$@" 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