Commit 307f3372 authored by diego's avatar diego

Use != instead of -ne in test invocations for greater portability.

patch by Michel Bardiaux, mbardiaux XatX mediaxim XdotX be


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5021 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ba5f33e4
......@@ -1941,7 +1941,7 @@ done
# Do not overwrite config.h if unchanged to avoid superfluous rebuilds.
diff $TMPH config.h >/dev/null 2>&1
if test $? -ne 0 ; then
if test "$?" != "0" ; then
mv -f $TMPH config.h
else
echo "config.h is unchanged"
......
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