This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug bootstrap/18486] [4.0 Regression] fixincl fails with make -jN profilebootstrap


------- Additional Comments From jgrimm2 at us dot ibm dot com  2004-11-15 16:46 -------
Hmmm in Makefile.in

macro_list : $(GCC_PASSES)
        echo | $(GCC_FOR_TARGET) -E -dM - | \
          sed -n 's/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p ; \
                s/^#define \(_[^_A-Z][a-zA-Z0-9_]*\).*/\1/p' | \
          sort -u > tmp-$@
        $(SHELL) $(srcdir)/../move-if-change tmp-$@ $@

Looks bogus. Maybe meant: 

macro_list : $(GCC_PASSES)
        echo | $(GCC_FOR_TARGET) -E -dM - | \
          sed -n 's/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p' | \
          sort -u > tmp-$@
        $(SHELL) $(srcdir)/../move-if-change tmp-$@ $@



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18486


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]