summaryrefslogtreecommitdiffstats
path: root/source3/script/uninstallman.sh
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-08-10 01:55:42 +0000
committerAndrew Tridgell <tridge@samba.org>1998-08-10 01:55:42 +0000
commit1c6f52cc284a75e304d10c098088c1c846c9efc8 (patch)
tree90260b384ff8eaf0150e920a14003ab48a9ae851 /source3/script/uninstallman.sh
parent65a29b0ca56a78148b415fd817af245afc2bb0b9 (diff)
downloadsamba-1c6f52cc284a75e304d10c098088c1c846c9efc8.tar.gz
samba-1c6f52cc284a75e304d10c098088c1c846c9efc8.tar.xz
samba-1c6f52cc284a75e304d10c098088c1c846c9efc8.zip
fixed the installation scripts for the new layout
(This used to be commit 60cdb83f3f6dfd7755e46254662245a82a8ef498)
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 b4d4bfc1f92..b6d2524ec77 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