diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-22 13:09:56 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-22 13:09:56 (GMT) |
commit | 8ed034378aeb3843ee2337f641f476fddba9543a (patch) | |
tree | 81068151f9debb3337657607e83c14f056e23259 | |
parent | eed7d81a6e748db77c5751d36ac023a6b95fec8b (diff) | |
download | tcl-8ed034378aeb3843ee2337f641f476fddba9543a.zip tcl-8ed034378aeb3843ee2337f641f476fddba9543a.tar.gz tcl-8ed034378aeb3843ee2337f641f476fddba9543a.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 |