mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-24 06:04:15 +01:00
18 lines
230 B
Bash
18 lines
230 B
Bash
#! /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
|