diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-09 09:49:09 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-09 09:49:09 +0000 |
commit | d85be3644113021d5af94047d108d072540ce7ef (patch) | |
tree | f2ab30be019823208b096aa8a4478e371643f74f /gnattools/Makefile.in | |
parent | 39c5444031e8d277daacf2896ad327e70d53ce60 (diff) | |
download | gcc-d85be3644113021d5af94047d108d072540ce7ef.tar.gz |
* Makefile.in: Fix incorrect use of ' in shell command
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96181 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gnattools/Makefile.in')
-rw-r--r-- | gnattools/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnattools/Makefile.in b/gnattools/Makefile.in index 44208f6d0ed..fcd59ce7469 100644 --- a/gnattools/Makefile.in +++ b/gnattools/Makefile.in @@ -170,7 +170,7 @@ gnattools: @default_gnattools_target@ $(GCC_DIR)/stamp-gnatlib: @if [ ! -f $(GCC_DIR)/stamp-gnatlib ] ; \ then \ - echo Can't build gnattools while gnatlib is out of date or unbuilt ; \ + echo "Cannot build gnattools while gnatlib is out of date or unbuilt" ; \ false; \ else \ true; \ |