Commit c683a5d1 authored by Måns Rullgård's avatar Måns Rullgård

simplify

Originally committed as revision 7040 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 165af439
......@@ -2051,8 +2051,7 @@ for codec in $DECODER_LIST $ENCODER_LIST $PARSER_LIST $DEMUXER_LIST $MUXER_LIST;
done
# Do not overwrite config.h if unchanged to avoid superfluous rebuilds.
diff $TMPH config.h >/dev/null 2>&1
if test "$?" != "0" ; then
if ! cmp -s $TMPH config.h; 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