diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-22 13:11:32 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-02-22 13:11:32 (GMT) |
commit | a78e60d70cf7cf8985c0bc05dfb98c770e883aa4 (patch) | |
tree | ae8c247dc3fdbccad4552b7524208a156a352cdf /unix | |
parent | 3e9b0ec4e334067a8f477b8d6ffe3afbcb7b3c58 (diff) | |
download | tk-a78e60d70cf7cf8985c0bc05dfb98c770e883aa4.zip tk-a78e60d70cf7cf8985c0bc05dfb98c770e883aa4.tar.gz tk-a78e60d70cf7cf8985c0bc05dfb98c770e883aa4.tar.bz2 |
Added missing quoting
Diffstat (limited to 'unix')
-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 |