Commit a5bbf2a8 authored by diego's avatar diego

Unconditionally overwrite config.h. The current behavior where config.h is

only overwritten if it differs from the new one is effectively a nop.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5018 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 586930a1
...@@ -1939,12 +1939,7 @@ for codec in $CODEC_LIST ; do ...@@ -1939,12 +1939,7 @@ for codec in $CODEC_LIST ; do
echo "CONFIG_`echo $codec | tr a-z A-Z`=yes" >> config.mak echo "CONFIG_`echo $codec | tr a-z A-Z`=yes" >> config.mak
done done
diff $TMPH config.h >/dev/null 2>&1 mv -f $TMPH config.h
if test $? -ne 0 ; then
mv -f $TMPH config.h
else
echo "config.h is unchanged"
fi
rm -f $TMPO $TMPC $TMPE $TMPS $TMPH rm -f $TMPO $TMPC $TMPE $TMPS $TMPH
......
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