Browse Source

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

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

Originally committed as revision 6004 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
John Dalgliesh Diego Biurrun 19 years ago
parent
commit
8156056e05
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      configure

+ 3
- 2
configure View File

@@ -2107,10 +2107,11 @@ if test "$amr_if2" = "yes" ; then
echo "AMR_CFLAGS=-DIF2=1" >> config.mak
fi

# Apparently it's not possible to portably echo a backslash.
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
echo '#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"' >> $TMPH
printf '#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\\n\\t"\n' >> $TMPH
fi




Loading…
Cancel
Save