summaryrefslogtreecommitdiff
path: root/source3/script/uninstallman.sh
diff options
context:
space:
mode:
Diffstat (limited to 'source3/script/uninstallman.sh')
-rwxr-xr-xsource3/script/uninstallman.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/script/uninstallman.sh b/source3/script/uninstallman.sh
index b4d4bfc1f9..b6d2524ec7 100755
--- a/source3/script/uninstallman.sh
+++ b/source3/script/uninstallman.sh
@@ -8,14 +8,12 @@ echo Uninstalling man pages from $MANDIR
for sect in 1 5 7 8 ; do
for m in $MANDIR/man$sect ; do
- for s in $SRCDIR../docs/*$sect; do
+ for s in $SRCDIR/../docs/*$sect; do
FNAME=$m/`basename $s`
if test -f $FNAME; then
echo Deleting $FNAME
rm -f $FNAME
test -f $FNAME && echo Cannot remove $FNAME... does $USER have privileges?
- else
- echo $FNAME does not exist! Check defines in the Makefile
fi
done
done