diff options
Diffstat (limited to 'src/lib/libcrypto/util/point.sh')
-rw-r--r-- | src/lib/libcrypto/util/point.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/libcrypto/util/point.sh b/src/lib/libcrypto/util/point.sh new file mode 100644 index 0000000000..4790e08f8a --- /dev/null +++ b/src/lib/libcrypto/util/point.sh | |||
@@ -0,0 +1,10 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | rm -f "$2" | ||
4 | if test "$OSTYPE" = msdosdjgpp; then | ||
5 | cp "$1" "$2" | ||
6 | else | ||
7 | ln -s "$1" "$2" | ||
8 | fi | ||
9 | echo "$2 => $1" | ||
10 | |||