diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-22 13:07:55 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-22 13:07:55 (GMT) |
commit | b3ceb866eec8e0f9dbde55f024efb248732602ca (patch) | |
tree | f8c30f0a9bbdcdc99401f3766d8c8230807eeb4d | |
parent | e61e7142baea090d78543a1da269f832e363b1b2 (diff) | |
download | tcl-b3ceb866eec8e0f9dbde55f024efb248732602ca.zip tcl-b3ceb866eec8e0f9dbde55f024efb248732602ca.tar.gz tcl-b3ceb866eec8e0f9dbde55f024efb248732602ca.tar.bz2 |
Added missing quoting
-rwxr-xr-x | unix/installManPage | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/installManPage b/unix/installManPage index e636db7..6bdccf0 100755 --- a/unix/installManPage +++ b/unix/installManPage @@ -75,7 +75,7 @@ Names=`sed -n ' p;q }' $ManPage` -if test -z $Names ; then +if test -z "$Names" ; then echo "warning: no target names found in $ManPage" fi |