Remove references to o_time.h
[openssl.git] / util / point.sh
index 92c12e82829831d10c69af63ed6b72f85c476252..da39899cb19e9c85ce58b1da5f9214fda81a742f 100755 (executable)
@@ -1,4 +1,10 @@
 #!/bin/sh
 
-/bin/rm -f $2
-ln -s $1 $2
+rm -f "$2"
+if test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw ; then
+    cp "$1" "$2"
+else
+    ln -s "$1" "$2"
+fi
+echo "$2 => $1"
+