diff options
author | Praveen Arimbrathodiyil <pravi.a@gmail.com> | 2009-05-07 14:16:19 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-05-07 14:16:19 +0200 |
commit | c52be9f6a0450d656671b4a756b3b5d56a88de24 (patch) | |
tree | ff167858842cd385539c73248a11a0561d98406b /source4/script | |
parent | b8ddb8765c6421b595737dac8deaeb88546a847a (diff) | |
download | samba-c52be9f6a0450d656671b4a756b3b5d56a88de24.tar.gz samba-c52be9f6a0450d656671b4a756b3b5d56a88de24.tar.bz2 samba-c52be9f6a0450d656671b4a756b3b5d56a88de24.zip |
Fix missing backtick.
Diffstat (limited to 'source4/script')
-rwxr-xr-x | source4/script/installman.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/script/installman.sh b/source4/script/installman.sh index a3b6ec0d93..3350eb87bc 100755 --- a/source4/script/installman.sh +++ b/source4/script/installman.sh @@ -6,7 +6,7 @@ MANPAGES=$* for I in $MANPAGES do - SECTION=`echo -n $I | sed "s/.*\(.\)$/\1/" + SECTION=`echo -n $I | sed "s/.*\(.\)$/\1/"` DIR="$MANDIR/man$SECTION" if [ ! -d "$DIR" ] then |