source-engine/thirdparty/openssl/util/point.sh

11 lines
152 B
Bash
Raw Normal View History

2020-10-22 17:43:01 +00:00
#!/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"