diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-15 17:32:48 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-15 17:32:48 +0000 |
commit | e2f541c98dfa4081fa3ab3d28f08ea2309281884 (patch) | |
tree | cb721a55bc88753ddeb9754dc98ef45e2850ce30 /doc/makecommon.sh | |
download | tdesvn-e2f541c98dfa4081fa3ab3d28f08ea2309281884.tar.gz tdesvn-e2f541c98dfa4081fa3ab3d28f08ea2309281884.zip |
Added KDE3 version of kdesvn
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1103685 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'doc/makecommon.sh')
-rwxr-xr-x | doc/makecommon.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/makecommon.sh b/doc/makecommon.sh new file mode 100755 index 0000000..f38eabd --- /dev/null +++ b/doc/makecommon.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +if [ "x$1" = "x" ]; then + echo "No source" + exit 0 +fi +if [ "x$2" = "x" ]; then + echo "No target" + exit 0 +fi + +if [ ! -h $1 ]; then + echo "linking $2 -> $1" + ln -fs "$2" "$1" +fi + |