r20509: Warn about the fact that no tests have been run rather than showing division by
[Samba/ekacnet.git] / source4 / script / installlib.sh
blob962c9562b1b962b9490cdea74d18d7550c0e3535
1 #!/bin/sh
3 LIBDIR=$1
4 SHLIBEXT=$2
6 shift
7 shift
9 for p in $*; do
10 p2=`basename $p`
11 lnname=`echo $p2 | sed -e "s/\.$SHLIBEXT.*/.$SHLIBEXT/"`
12 echo Installing $p as $LIBDIR/$p2
13 if [ -f $LIBDIR/$p2 ]; then
14 rm -f $LIBDIR/$p2.old
15 mv $LIBDIR/$p2 $LIBDIR/$p2.old
17 cp $p $LIBDIR/
18 ln -sf $p2 $LIBDIR/$lnname
19 done
21 cat << EOF
22 ======================================================================
23 The shared libraries are installed. You may restore the old libraries (if there
24 were any) using the command "make revert". You may uninstall the libraries
25 using the command "make uninstalllib" or "make uninstall" to uninstall
26 binaries, man pages and shell scripts.
27 ======================================================================
28 EOF
30 exit 0