diff options
author | Tim Potter <tpot@samba.org> | 1998-11-27 21:32:08 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 1998-11-27 21:32:08 +0000 |
commit | 9ebe82cd5c74211fa668c4b3163b697895d7f4db (patch) | |
tree | 58d7e54544ace5a55575244c6a588d2890a33fc9 /source3 | |
parent | b90966d85bd353e4b276b5998590435e88c4dbf6 (diff) | |
download | samba-9ebe82cd5c74211fa668c4b3163b697895d7f4db.tar.gz samba-9ebe82cd5c74211fa668c4b3163b697895d7f4db.tar.bz2 samba-9ebe82cd5c74211fa668c4b3163b697895d7f4db.zip |
Now uninstalls man pages from correct source location.
Fix by Andrej Borsenkow <borsenkow.msk@sni.de>
(This used to be commit 5c0e31982e8eb1c93bc77925e59be65798f2dbad)
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/script/uninstallman.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/uninstallman.sh b/source3/script/uninstallman.sh index b6d2524ec7..873ca4f720 100755 --- a/source3/script/uninstallman.sh +++ b/source3/script/uninstallman.sh @@ -8,7 +8,7 @@ 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/manpages/*$sect; do FNAME=$m/`basename $s` if test -f $FNAME; then echo Deleting $FNAME |