]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.0.1
authorfred <fred>
Mon, 29 Jun 1998 11:32:49 +0000 (11:32 +0000)
committerfred <fred>
Mon, 29 Jun 1998 11:32:49 +0000 (11:32 +0000)
stepmake/bin/install-dot-exe.sh [new file with mode: 0755]

diff --git a/stepmake/bin/install-dot-exe.sh b/stepmake/bin/install-dot-exe.sh
new file mode 100755 (executable)
index 0000000..c4128c5
--- /dev/null
@@ -0,0 +1,24 @@
+#!/bin/sh
+# install-dot-exe.sh  -- add .exe for cygnus gnu-windows
+# hack for doos install; cygnus should support rpm
+
+realinstall=install
+
+args=''
+while [ $# -ne 0 ] 
+do
+    case $1 in
+       -*) args="$args $1"
+           ;;
+
+        *) if [ -f $1.exe ]; then
+               args="$args $1.exe"
+           else
+               args="$args $1"
+           fi
+           ;;
+    esac
+    shift
+done
+
+$realinstall $args