]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
1999-09-21 Akim Demaille <akim@epita.fr>
authorAkim Demaille <akim@epita.fr>
Tue, 21 Sep 1999 12:56:50 +0000 (12:56 +0000)
committerAkim Demaille <akim@epita.fr>
Tue, 21 Sep 1999 12:56:50 +0000 (12:56 +0000)
* acgeneral.m4 (AC_INIT_PARSE_ARGS, --help message): Use quoted
heredocs to avoid problems with quotes.

ChangeLog
acgeneral.m4
configure
lib/autoconf/general.m4

index f3676c0ee0fa2eb0b7b7aec3794a8228d7451225..3040277a8312bf0e1e3912fc9d8c1173e45bd5cb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-09-21  Akim Demaille  <akim@epita.fr>
+
+       * acgeneral.m4 (AC_INIT_PARSE_ARGS, --help message): Use quoted
+       heredocs to avoid problems with quotes.
+
 1999-09-21  Akim Demaille  <akim@epita.fr>
 
        * NEWS: Updated.
index 796ec3c729db6e64b4b199bb9f2daf35a0903e8d..92dac46189eea1876b1a05e5bbfd9a107be62f50 100644 (file)
@@ -765,10 +765,10 @@ changequote([, ])dnl
   -help | --help | --hel | --he)
     # Omit some internal or obsolete options to make the list less imposing.
     # This message is too long to be a string in the A/UX 3.1 sh.
-    cat << EOF
 changequote(, )dnl
-`configure' configures software source code packages to adapt to many
-kinds of systems.
+    cat << \EOF
+`configure' configures software source code packages to adapt to many kinds
+of systems.
 
 Usage: configure [OPTION]... [VAR=VALUE]... [HOST]
 
@@ -813,7 +813,7 @@ Program names:
                           run sed PROGRAM on installed program names
 
 EOF
-    cat << EOF
+    cat << \EOF
 Host type:
   --build=BUILD           configure for building on BUILD [BUILD=HOST]
   --host=HOST             configure for HOST [guessed]
@@ -826,8 +826,8 @@ Features and packages:
   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
   --x-includes=DIR        X include files are in DIR
   --x-libraries=DIR       X library files are in DIR
-changequote([, ])dnl
 EOF
+changequote([, ])dnl
     if test -n "$ac_help"; then
       echo "
 --enable and --with options recognized:$ac_help"
index d7b46a6fe5c39dfc087ef377e224c49def04980c..2003623f41c8fce5600963c6c566bc44790b7d26 100755 (executable)
--- a/configure
+++ b/configure
@@ -150,7 +150,7 @@ do
   -help | --help | --hel | --he)
     # Omit some internal or obsolete options to make the list less imposing.
     # This message is too long to be a string in the A/UX 3.1 sh.
-    cat << EOF
+    cat << \EOF
 `configure' configures software source code packages to adapt to many
 kinds of systems.
 
@@ -197,7 +197,7 @@ Program names:
                           run sed PROGRAM on installed program names
 
 EOF
-    cat << EOF
+    cat << \EOF
 Host type:
   --build=BUILD           configure for building on BUILD [BUILD=HOST]
   --host=HOST             configure for HOST [guessed]
index 796ec3c729db6e64b4b199bb9f2daf35a0903e8d..92dac46189eea1876b1a05e5bbfd9a107be62f50 100644 (file)
@@ -765,10 +765,10 @@ changequote([, ])dnl
   -help | --help | --hel | --he)
     # Omit some internal or obsolete options to make the list less imposing.
     # This message is too long to be a string in the A/UX 3.1 sh.
-    cat << EOF
 changequote(, )dnl
-`configure' configures software source code packages to adapt to many
-kinds of systems.
+    cat << \EOF
+`configure' configures software source code packages to adapt to many kinds
+of systems.
 
 Usage: configure [OPTION]... [VAR=VALUE]... [HOST]
 
@@ -813,7 +813,7 @@ Program names:
                           run sed PROGRAM on installed program names
 
 EOF
-    cat << EOF
+    cat << \EOF
 Host type:
   --build=BUILD           configure for building on BUILD [BUILD=HOST]
   --host=HOST             configure for HOST [guessed]
@@ -826,8 +826,8 @@ Features and packages:
   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
   --x-includes=DIR        X include files are in DIR
   --x-libraries=DIR       X library files are in DIR
-changequote([, ])dnl
 EOF
+changequote([, ])dnl
     if test -n "$ac_help"; then
       echo "
 --enable and --with options recognized:$ac_help"