diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-14 02:42:27 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-14 02:42:27 +0000 |
commit | c683a5d129612c401f1ccddef2ba1a21eec2d205 (patch) | |
tree | d15f91bec28484a6c81027d0284739ab9f047704 /configure | |
parent | 165af439f1e51e5cc673416b6723197dd5d0ead9 (diff) | |
download | ffmpeg-c683a5d129612c401f1ccddef2ba1a21eec2d205.tar.gz |
simplify
Originally committed as revision 7040 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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" |