From 23cede6853f3fb0ef2b841053d818c9b79e84068 Mon Sep 17 00:00:00 2001 From: fred Date: Mon, 29 Jun 1998 11:32:49 +0000 Subject: [PATCH] lilypond-1.0.1 --- stepmake/bin/install-dot-exe.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 stepmake/bin/install-dot-exe.sh 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 -- 2.39.5