mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
configure: do not fork off grep subprocess while testing for whitespace
grep is not necessary for the functionality. This avoids an unnecessary fork. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
47df871645
commit
6455e4fb5b
5
configure
vendored
5
configure
vendored
@ -2974,8 +2974,9 @@ if test -f configure; then
|
||||
source_path=.
|
||||
else
|
||||
source_path=$(cd $(dirname "$0"); pwd)
|
||||
echo "$source_path" | grep -q '[[:blank:]]' &&
|
||||
die "Out of tree builds are impossible with whitespace in source path."
|
||||
case "$source_path" in
|
||||
*[[:blank:]]*) die "Out of tree builds are impossible with whitespace in source path." ;;
|
||||
esac
|
||||
test -e "$source_path/config.h" &&
|
||||
die "Out of tree builds are impossible with config.h in source dir."
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user