Commit 61bcb68c authored by mru's avatar mru

simplify


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7040 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ffa66c2f
......@@ -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