13
0
livetrax/tools/windows_packaging/copydll-fedora.sh
Tim Mayberry 35c8f5bab4 Only copy necessary config files to package directory
Also use -L flag so files are actually copied and not linked
2014-06-07 13:49:12 +10:00

12 lines
177 B
Bash
Executable File

#!/bin/bash
function copydll () {
if [ -f $MINGW_ROOT/bin/$1 ] ; then
cp $MINGW_ROOT/bin/$1 $2 || return 1
return 0
fi
echo "ERROR: File $1 does not exist"
return 1
}