1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 22:15:32 +00:00

And escaping the printf input

This commit is contained in:
Alexander "Ace" Olofsson 2016-08-28 21:56:53 +02:00
parent e47f4a9016
commit bc6aa86b8a

View file

@ -679,7 +679,7 @@ if [ ! -z $CI ]; then
fi fi
if [ -z $VERBOSE ]; then if [ -z $VERBOSE ]; then
printf "- Configuring... " printf -- "- Configuring... "
else else
echo "- cmake .. $CMAKE_OPTS" echo "- cmake .. $CMAKE_OPTS"
fi fi
@ -702,13 +702,13 @@ if [ -z $CI ]; then
echo "- Copying Runtime DLLs..." echo "- Copying Runtime DLLs..."
mkdir -p $BUILD_CONFIG mkdir -p $BUILD_CONFIG
for DLL in $RUNTIME_DLLS; do for DLL in $RUNTIME_DLLS; do
echo " `basename $DLL`." echo " `basename $DLL`."
cp "$DLL" $BUILD_CONFIG/ cp "$DLL" $BUILD_CONFIG/
done done
echo "- OSG Plugin DLLs..." echo "- OSG Plugin DLLs..."
mkdir -p $BUILD_CONFIG/osgPlugins-3.4.0 mkdir -p $BUILD_CONFIG/osgPlugins-3.4.0
for DLL in $OSG_PLUGINS; do for DLL in $OSG_PLUGINS; do
echo " `basename $DLL`." echo " `basename $DLL`."
cp "$DLL" $BUILD_CONFIG/osgPlugins-3.4.0 cp "$DLL" $BUILD_CONFIG/osgPlugins-3.4.0
done done
echo echo