mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 14:48:57 +00:00
1f13597d10
Approved by: benl (maintainer)
11 lines
152 B
Bash
Executable File
11 lines
152 B
Bash
Executable File
#!/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"
|
|
|