ardour/tools/windows_packaging/copydll-fedora.sh
Tim Mayberry bee71eeba7 Only copy necessary config files to package directory
Also use -L flag so files are actually copied and not linked
2014-08-17 14:53:58 -04:00

11 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
}