mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
12 lines
177 B
Bash
12 lines
177 B
Bash
|
|
#!/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
|
||
|
|
}
|