1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-21 07:24:15 +02:00

Remove bashism

This commit is contained in:
Rémi Denis-Courmont 2006-11-12 13:38:50 +00:00
parent 43a9e778e4
commit fdfdb5d479

View File

@ -41,7 +41,10 @@ else
fi
rm -f config.mak
echo -e "# Automatically generated by bootstrap.\n# Make changes if you know what you're doing.\n" > config.mak
{
echo "# Automatically generated by bootstrap."
echo "# Make changes if you know what you're doing."
} > config.mak
if test "$HOST" != "$BUILD"; then
CC="${HOST}-gcc"