summaryrefslogtreecommitdiff
path: root/source/script/installmodules.sh
diff options
context:
space:
mode:
authorJames Peach <jpeach@samba.org>2007-05-23 19:10:04 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:22:44 -0500
commit190a69b1f9d7a0f858ed56c505c2d3c473273463 (patch)
tree1649e27855dcd654a61b9c72acc58a7e857e5555 /source/script/installmodules.sh
parent123290d0947191abca4a3b3d81718c823c1bc4a0 (diff)
downloadsamba-190a69b1f9d7a0f858ed56c505c2d3c473273463.tar.gz
r23093: Allow modules with the same name but different types.
Diffstat (limited to 'source/script/installmodules.sh')
-rwxr-xr-xsource/script/installmodules.sh14
1 files changed, 11 insertions, 3 deletions
diff --git a/source/script/installmodules.sh b/source/script/installmodules.sh
index f6e52880fe8..f70db003ede 100755
--- a/source/script/installmodules.sh
+++ b/source/script/installmodules.sh
@@ -19,11 +19,19 @@ fi
fi
done
+# We expect the last component of LIBDIR to be the module type, eg. idmap,
+# pdb. By stripping this from the installation name, you can have multiple
+# modules of the same name but different types by creating eg. idmap_foo
+# and pdb_foo. This makes the most sense for idmap and pdb module, where
+# they need to be consistent.
+mtype=`basename $LIBDIR`
+
for p in $*; do
p2=`basename $p`
- echo Installing $p as $DESTDIR/$LIBDIR/$p2
- cp -f $p $DESTDIR/$LIBDIR/
- chmod $INSTALLPERMS $DESTDIR/$LIBDIR/$p2
+ name=`echo $p2 | sed -es/${mtype}_//`
+ echo Installing $p as $DESTDIR/$LIBDIR/$name
+ cp -f $p $DESTDIR/$LIBDIR/$name
+ chmod $INSTALLPERMS $DESTDIR/$LIBDIR/$name
done
exit 0