https://gcc.gnu.org/bugzilla/show_bug.cgi?id=127359

Rainer Orth <ro at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ro at gcc dot gnu.org

--- Comment #4 from Rainer Orth <ro at gcc dot gnu.org> ---
Unfortunately this patch broke Solaris bootstrap: e.g. the generated
libm2cor/SYSTEM.def contains

EXPORT QUALIFIED (* the following are built into the compiler: *)
-n                
-n LOC,
-n WORD, 
-n BYTE, 
-n ADDRESS, 
-n INTEGER8, 

The problem is that echo -n is unportable, as documented in the autoconf docs.
There are two ways out, I believe: use $(SHELL) to invoke makeSystem instead
of hardcoding sh or use printf "%s", ... as recommended in the autoconf docs.

Reply via email to