mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-28 11:56:43 +01:00
18 lines
230 B
Plaintext
18 lines
230 B
Plaintext
|
#! /bin/sh
|
||
|
#
|
||
|
# $Id: //poco/1.1.0/build/script/shlibln#1 $
|
||
|
#
|
||
|
# shlibln
|
||
|
#
|
||
|
# Create a symbolic link
|
||
|
#
|
||
|
|
||
|
if [ $# -ne 2 ] ; then
|
||
|
echo "usage: $0:t file link"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
if [ "$1" != "$2" ] ; then
|
||
|
ln -sf "$1" "$2"
|
||
|
fi
|