summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/util/point.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/util/point.sh')
-rw-r--r--src/lib/libcrypto/util/point.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libcrypto/util/point.sh b/src/lib/libcrypto/util/point.sh
index 47543c88e2..ce7dcc56df 100644
--- a/src/lib/libcrypto/util/point.sh
+++ b/src/lib/libcrypto/util/point.sh
@@ -1,6 +1,10 @@
1#!/bin/sh 1#!/bin/sh
2 2
3rm -f $2 3rm -f $2
4ln -s $1 $2 4if test "$OSTYPE" = msdosdjgpp; then
5 cp $1 $2
6else
7 ln -s $1 $2
8fi
5echo "$2 => $1" 9echo "$2 => $1"
6 10