X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=util%2Fpoint.sh;h=4790e08f8a618657a9c32024f36d4b2099229f00;hb=090e81d4aa644d34e31ce67068fcf2a2e9183b04;hp=47543c88e267d9d6580c7568285d3ae9c1b68deb;hpb=bb8f3c58794868c65b9ac45f11c27d3a104e279e;p=openssl.git diff --git a/util/point.sh b/util/point.sh index 47543c88e2..4790e08f8a 100755 --- a/util/point.sh +++ b/util/point.sh @@ -1,6 +1,10 @@ #!/bin/sh -rm -f $2 -ln -s $1 $2 +rm -f "$2" +if test "$OSTYPE" = msdosdjgpp; then + cp "$1" "$2" +else + ln -s "$1" "$2" +fi echo "$2 => $1"