summaryrefslogtreecommitdiffstats
path: root/doc/makecommon.sh
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2022-11-09 22:29:42 +0100
committerSlávek Banko <slavek.banko@axis.cz>2022-11-09 22:29:42 +0100
commit976180bc549dc2cbb5875b2c6fba5cb807efc516 (patch)
treefd1035d8816462de5e2e78594bafb7fc8c0671d2 /doc/makecommon.sh
parent5d6073d6d93822a60274671b7a5ac5740f6ff8ea (diff)
downloadtdesvn-976180bc.tar.gz
tdesvn-976180bc.zip
Copy translations to a new directory layout.
Use common rules for build and install translations. Use common rules for build and install documentation. Added translation of .desktop files. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'doc/makecommon.sh')
-rwxr-xr-xdoc/makecommon.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/makecommon.sh b/doc/makecommon.sh
deleted file mode 100755
index f38eabd..0000000
--- a/doc/makecommon.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/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
-