From: sof Date: Thu, 19 Jul 2001 20:27:23 +0000 (+0000) Subject: [project @ 2001-07-19 20:27:23 by sof] X-Git-Tag: Approximately_9120_patches~1502 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=e1753f9bba603f7e507728060aec32932014c6d5;p=ghc-hetmet.git [project @ 2001-07-19 20:27:23 by sof] FPTOOLS_END_{TEXT,DATA}_SECTION: fix 'test -n' usage --- diff --git a/aclocal.m4 b/aclocal.m4 index 3b675b4..71afd43 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $Id: aclocal.m4,v 1.79 2001/07/19 09:03:24 simonmar Exp $ +dnl $Id: aclocal.m4,v 1.80 2001/07/19 20:27:23 sof Exp $ dnl dnl Extra autoconf macros for the Glasgow fptools dnl @@ -675,7 +675,7 @@ AC_DEFUN([FPTOOLS_END_TEXT_SECTION], fptools_cv_end_of_text="etext asm("etext")" fi fi]) - if test -n $fptools_cv_end_of_text; then + if test -n "$fptools_cv_end_of_text"; then AC_DEFINE_UNQUOTED([TEXT_SECTION_END_MARKER], $fptools_cv_end_of_text) else AC_DEFINE_UNQUOTED([TEXT_SECTION_END_MARKER], dunno_end_of_text) @@ -698,7 +698,7 @@ AC_DEFUN([FPTOOLS_END_TEXT_SECTION], fptools_cv_end_of_text_decl=etext fi fi]) - if test -n $fptools_cv_end_of_text_decl; then + if test -n "$fptools_cv_end_of_text_decl"; then AC_DEFINE_UNQUOTED([TEXT_SECTION_END_MARKER_DECL], $fptools_cv_end_of_text_decl) else AC_DEFINE_UNQUOTED([TEXT_SECTION_END_MARKER_DECL], dunno_end_of_text_decl) @@ -726,7 +726,7 @@ AC_DEFUN([FPTOOLS_END_DATA_SECTION], fptools_cv_end_of_data=end fi fi]) - if test -n $fptools_cv_end_of_data; then + if test -n "$fptools_cv_end_of_data"; then AC_DEFINE_UNQUOTED([DATA_SECTION_END_MARKER], $fptools_cv_end_of_data) else AC_DEFINE_UNQUOTED([DATA_SECTION_END_MARKER], dunno_end_of_data) @@ -749,7 +749,7 @@ AC_DEFUN([FPTOOLS_END_DATA_SECTION], fptools_cv_end_of_data_decl=end fi fi]) - if test -n $fptools_cv_end_of_data_decl; then + if test -n "$fptools_cv_end_of_data_decl"; then AC_DEFINE_UNQUOTED([DATA_SECTION_END_MARKER_DECL], $fptools_cv_end_of_data_decl) else AC_DEFINE_UNQUOTED([DATA_SECTION_END_MARKER_DECL], dunno_end_of_data_decl)