aboutsummaryrefslogtreecommitdiffstats
path: root/util/point.sh
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-06-13 20:42:35 +0000
committerRichard Levitte <levitte@openssl.org>2002-06-13 20:42:35 +0000
commit451dc18f109e4fff1a642976fee7ae7e64af35dc (patch)
treec4728b949d7511ed666c9f0ef65ec8e7c8957581 /util/point.sh
parent127dca46a07850204f1432ec6998923eebc341b1 (diff)
downloadopenssl-451dc18f109e4fff1a642976fee7ae7e64af35dc.tar.gz
Add support for DJGPP.
PR: 75
Diffstat (limited to 'util/point.sh')
-rwxr-xr-xutil/point.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/util/point.sh b/util/point.sh
index 47543c88e2..ce7dcc56df 100755
--- a/util/point.sh
+++ b/util/point.sh
@@ -1,6 +1,10 @@
#!/bin/sh
rm -f $2
-ln -s $1 $2
+if test "$OSTYPE" = msdosdjgpp; then
+ cp $1 $2
+else
+ ln -s $1 $2
+fi
echo "$2 => $1"