summaryrefslogtreecommitdiff
path: root/util/point.sh
diff options
context:
space:
mode:
authorlevitte <levitte>2002-06-13 20:41:48 +0000
committerlevitte <levitte>2002-06-13 20:41:48 +0000
commitae113e469518cd3fb0a62ac13414183b15aa44ae (patch)
tree95150c23ddf0641976a406657abd3999951d0e1e /util/point.sh
parentf4842006da0b86f43ea5a8ac13c4fe6f6aed772b (diff)
downloadopenssl-ae113e469518cd3fb0a62ac13414183b15aa44ae.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 47543c88e..ce7dcc56d 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"