diff options
author | Matthias Dieter Wallnoefer <mwallnoefer@yahoo.de> | 2009-03-20 16:22:02 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-03-20 16:22:02 +0100 |
commit | 2de464a7658f91d2d01087080b984d52c3483426 (patch) | |
tree | 5d0afb1ab01181fb52e22bc1202ff93e75d4e058 /source4 | |
parent | 1ef206524de589efeeef0544afbf7bfb37d99c15 (diff) | |
download | samba-2de464a7658f91d2d01087080b984d52c3483426.tar.gz |
Fix uninstallman.
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/script/uninstallman.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/script/uninstallman.sh b/source4/script/uninstallman.sh index 9b087c68bb2..edc1c47e4df 100755 --- a/source4/script/uninstallman.sh +++ b/source4/script/uninstallman.sh @@ -8,7 +8,7 @@ MANPAGES=$* for I in $MANPAGES do - SECTION=`echo -n $I | sed "s/.*\(.\)$/\1/" + SECTION=`echo -n $I | sed "s/.*\(.\)$/\1/"` FNAME=$MANDIR/man$SECTION/$I if test -f $FNAME; then echo Deleting $FNAME |