mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
fa8d539e0f
Not part of the "all" make target yet, as it requires xsltproc
(This used to be commit fd3f463643
)
28 lines
698 B
Bash
28 lines
698 B
Bash
#!/bin/sh
|
|
# 4 July 96 Dan.Shearer@UniSA.edu.au
|
|
# Updated for Samba4 by Jelmer Vernooij
|
|
|
|
MANDIR=$1
|
|
shift 1
|
|
MANPAGES=$*
|
|
|
|
for I in $MANPAGES
|
|
do
|
|
SECTION=`echo $I | grep -o '.$'`
|
|
FNAME=$MANDIR/man$SECTION/$I
|
|
if test -f $FNAME; then
|
|
echo Deleting $FNAME
|
|
rm -f $FNAME
|
|
test -f $FNAME && echo Cannot remove $FNAME... does $USER have privileges?
|
|
fi
|
|
done
|
|
|
|
cat << EOF
|
|
======================================================================
|
|
The man pages have been uninstalled. You may install them again using
|
|
the command "make installman" or make "install" to install binaries,
|
|
man pages and shell scripts.
|
|
======================================================================
|
|
EOF
|
|
exit 0
|