On Thu, Aug 21, 2003 at 06:44:49AM +0200, Andreas Tobler wrote:
Geoffrey Keating wrote:
+# Export original configure arguments for use by sub-configures.
These
+# will be expanded once by make, and once by the shell, so they need
to
+# have '$' quoted for make, and then each argument quoted for the
shell.
+# What's more, the 'echo' below might expand backslashes.
+cat <<\EOF_SED > conftestsed
+s,\\,\\\\,g; s,\$,$$,g
+EOF_SED
+tmp="'$progname'"
+for ac_arg ; do <--------------------------------
Solaris native complains about unexpected ; at line 805.
Yep. If the "no list given so assume the program args" form of 'for'
is to be used, it has to be
for ac_arg
do
i.e., semicolon and newline aren't equivalent.