update german translation
[ardour.git] / tools / windows_packaging / copydll-fedora.sh
1 #!/bin/bash
2
3 function copydll () {
4         if [ -f $MINGW_ROOT/bin/$1 ] ; then
5                 cp $MINGW_ROOT/bin/$1 $2 || return 1
6                 return 0
7         fi
8
9         echo "ERROR: File $1 does not exist"
10         return 1
11 }