]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/bin/install-dot-exe.sh
release: 1.0.1
[lilypond.git] / stepmake / bin / install-dot-exe.sh
1 #!/bin/sh
2 # install-dot-exe.sh  -- add .exe for cygnus gnu-windows
3 # hack for doos install; cygnus should support rpm
4
5 realinstall=install
6
7 args=''
8 while [ $# -ne 0 ] 
9 do
10     case $1 in
11         -*) args="$args $1"
12             ;;
13
14          *) if [ -f $1.exe ]; then
15                 args="$args $1.exe"
16             else
17                 args="$args $1"
18             fi
19             ;;
20     esac
21     shift
22 done
23
24 $realinstall $args