summaryrefslogtreecommitdiff
path: root/ndb/tools/make-links.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ndb/tools/make-links.sh')
-rwxr-xr-xndb/tools/make-links.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/ndb/tools/make-links.sh b/ndb/tools/make-links.sh
deleted file mode 100755
index e0c4f55986e..00000000000
--- a/ndb/tools/make-links.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#! /bin/sh
-
-# 1 - Link top src
-# 2 - Link dst
-
-if [ $# -lt 2 ]
-then
- exit 0
-fi
-
-name=`basename $2`
-files=`find $1/$name -type f -name '*.h*'`
-
-for i in $files
-do
- ln -s $i $2/`basename $i`
-done
-
-
-