Commit 5ae93623 authored by diego's avatar diego

It's not possible to portably echo a backslash, use printf instead.

patch by John Dalgliesh, johnd **at** defyne **dot** org


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6004 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0cb2c0f7
...@@ -2107,10 +2107,11 @@ if test "$amr_if2" = "yes" ; then ...@@ -2107,10 +2107,11 @@ if test "$amr_if2" = "yes" ; then
echo "AMR_CFLAGS=-DIF2=1" >> config.mak echo "AMR_CFLAGS=-DIF2=1" >> config.mak
fi fi
# Apparently it's not possible to portably echo a backslash.
if test "$asmalign_pot" = "yes" ; then if test "$asmalign_pot" = "yes" ; then
echo '#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"' >> $TMPH printf '#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\\n\\t"\n' >> $TMPH
else else
echo '#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"' >> $TMPH printf '#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\\n\\t"\n' >> $TMPH
fi fi
......
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