pike.git
/
NT
/
tools
/
install
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/NT/tools/install:1:
+
#!/bin/sh
-
+
dest=`eval echo '$'$#`
+
+
+
case "x$dest" in
+
x[a-zA-Z]:*)
+
. $NTTOOLS
+
+
if test "x$1" = "x-c" ; then
+
shift
+
fi
+
+
if test -f "$1.exe" ; then
+
set -- "$1.exe" "$2"
+
fi
+
+
do_cmd "copy `fixpath $*`"
+
exit 0
+
;;
+
esac
+
+
exec /usr/bin/install "$@"
+
Newline at end of file added.