From: fred Date: Mon, 29 Jun 1998 11:32:49 +0000 (+0000) Subject: lilypond-1.0.1 X-Git-Tag: release/1.5.59~5926 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=23cede6853f3fb0ef2b841053d818c9b79e84068;p=lilypond.git lilypond-1.0.1 --- diff --git a/stepmake/bin/install-dot-exe.sh b/stepmake/bin/install-dot-exe.sh new file mode 100755 index 0000000000..c4128c5ed8 --- /dev/null +++ b/stepmake/bin/install-dot-exe.sh @@ -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