diff options
Diffstat (limited to 'CryptoPkg/Library/OpensslLib/openssl/util/point.sh')
-rwxr-xr-x | CryptoPkg/Library/OpensslLib/openssl/util/point.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/CryptoPkg/Library/OpensslLib/openssl/util/point.sh b/CryptoPkg/Library/OpensslLib/openssl/util/point.sh new file mode 100755 index 00000000..da39899c --- /dev/null +++ b/CryptoPkg/Library/OpensslLib/openssl/util/point.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +rm -f "$2" +if test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw ; then + cp "$1" "$2" +else + ln -s "$1" "$2" +fi +echo "$2 => $1" + |