From 7d038e9d4d83e7c7120e78418e108df70b9025d6 Mon Sep 17 00:00:00 2001 From: markus <> Date: Tue, 10 Sep 2002 16:31:57 +0000 Subject: merge openssl-0.9.7-beta3, tested on vax by miod@ --- src/lib/libcrypto/util/point.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/lib/libcrypto/util/point.sh') 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 @@ #!/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" -- cgit v1.2.3-55-g6feb