X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=util%2Fpoint.sh;h=4790e08f8a618657a9c32024f36d4b2099229f00;hb=babb379849ffb4112792f266f92e9ebb2bd35332;hp=92c12e82829831d10c69af63ed6b72f85c476252;hpb=d02b48c63a58ea4367a0e905979f140b7d090f86;p=openssl.git diff --git a/util/point.sh b/util/point.sh index 92c12e8282..4790e08f8a 100755 --- a/util/point.sh +++ b/util/point.sh @@ -1,4 +1,10 @@ #!/bin/sh -/bin/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" +