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 | 5c0e31982e8eb1c93bc77925e59be65798f2dbad (patch) | |
tree | 90ea30b55bb558591e109d9c72de91944201feb8 | |
parent | 386a3bfd337f4b248f6c88b9c98b9d6471cc9b25 (diff) | |
download | samba-5c0e31982e8eb1c93bc77925e59be65798f2dbad.tar.gz samba-5c0e31982e8eb1c93bc77925e59be65798f2dbad.tar.xz samba-5c0e31982e8eb1c93bc77925e59be65798f2dbad.zip |
Now uninstalls man pages from correct source location.
Fix by Andrej Borsenkow <borsenkow.msk@sni.de>
-rwxr-xr-x | source/script/uninstallman.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/script/uninstallman.sh b/source/script/uninstallman.sh index b6d2524ec77..873ca4f7208 100755 --- a/source/script/uninstallman.sh +++ b/source/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 |