Skip to content

Commit

Permalink
Bugfix: FFmpeg install error detection matching error.h
Browse files Browse the repository at this point in the history
  • Loading branch information
elias committed Apr 22, 2014
1 parent 46cfb27 commit df8ecd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build-melted.sh
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ function configure_compile_install_subproject {
cat $TMPNAME 2>&1
# If it contains error it returns 0. 1 matches, 255 errors
# Filter X errors out too
grep -v "X Error" $TMPNAME | grep -i error 2>&1
grep -v "X Error" $TMPNAME | grep -v error.h | grep -i error 2>&1
if test 0 = $? ; then
die "Unable to install $1"
fi
Expand Down

0 comments on commit df8ecd8

Please sign in to comment.