diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-22 13:10:56 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-22 13:10:56 (GMT) |
commit | 320524e2cf394d50034e2cbb715958c1545a7673 (patch) | |
tree | 3920796add438d14f5aab3e29522b6440b2ed3fd /unix/installManPage | |
parent | 367c0017115f5d49df42aa386b08064b12147602 (diff) | |
download | tk-320524e2cf394d50034e2cbb715958c1545a7673.zip tk-320524e2cf394d50034e2cbb715958c1545a7673.tar.gz tk-320524e2cf394d50034e2cbb715958c1545a7673.tar.bz2 |
Added missing quoting
Diffstat (limited to 'unix/installManPage')
-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 |