Files
poco/build/script/shlibln
Guenter Obiltschnig f476bd6b32 initial import
2006-07-11 16:33:40 +00:00

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