diff options
author | Michel Bardiaux <mbardiaux@peaktime.be> | 2006-02-13 22:50:00 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-02-13 22:50:00 +0000 |
commit | 214c5f26c9acd231056753dc2d336d73040bff34 (patch) | |
tree | 33b809995071265d3270d5d189b6693c58f1afaf | |
parent | 9cb2cf10b27d750895ab22fd506a43699ec68811 (diff) | |
download | ffmpeg-214c5f26c9acd231056753dc2d336d73040bff34.tar.gz |
Use != instead of -ne in test invocations for greater portability.
patch by Michel Bardiaux, mbardiaux XatX mediaxim XdotX be
Originally committed as revision 5021 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |