This is the mail archive of the gcc-patches@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]

Fix for intl problem



This mirrors a change from the FSF tree:


        * Makefile.in (ORDINARY_FLAGS_TO_PASS): Renmaed from FLAGS_TO_PASS.
        Remove "CC".
        (FLAGS_TO_PASS): New variable.

Index: Makefile.in
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/Makefile.in,v
retrieving revision 1.261
diff -c -3 -p -r1.261 Makefile.in
*** Makefile.in	1999/04/26 23:00:53	1.261
--- Makefile.in	1999/04/27 07:35:25
*************** LANG_EXTRA_HEADERS = @all_headers@
*** 613,624 ****
  # because we need CC="stage1/xgcc -Bstage1/" to work in the language
  # subdirectories.
  # ??? The choices here will need some experimenting with.
! FLAGS_TO_PASS = \
  	"AR_FLAGS_FOR_TARGET=$(AR_FLAGS_FOR_TARGET)" \
  	"AR_FOR_TARGET=$(AR_FOR_TARGET)" \
  	"BISON=$(BISON)" \
  	"BISONFLAGS=$(BISONFLAGS)" \
- 	"CC=@cc_set_by_configure@" \
  	"CFLAGS=$(CFLAGS)" \
  	"CLIB=$(CLIB)" \
  	"GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
--- 613,623 ----
  # because we need CC="stage1/xgcc -Bstage1/" to work in the language
  # subdirectories.
  # ??? The choices here will need some experimenting with.
! ORDINARY_FLAGS_TO_PASS = \
  	"AR_FLAGS_FOR_TARGET=$(AR_FLAGS_FOR_TARGET)" \
  	"AR_FOR_TARGET=$(AR_FOR_TARGET)" \
  	"BISON=$(BISON)" \
  	"BISONFLAGS=$(BISONFLAGS)" \
  	"CFLAGS=$(CFLAGS)" \
  	"CLIB=$(CLIB)" \
  	"GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
*************** FLAGS_TO_PASS = \
*** 647,653 ****
  	"datadir=$(datadir)" \
  	"distdir=../tmp/\$$(subdir)" \
  	"localedir=$(localedir)"
! 
  PREPEND_DOTDOT_TO_RELATIVE_PATHS = sed \
  	-e 's|^ *[^ /][^ /]*/|%&|' \
  	-e 's| -B| -B%|g' \
--- 646,652 ----
  	"datadir=$(datadir)" \
  	"distdir=../tmp/\$$(subdir)" \
  	"localedir=$(localedir)"
! FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) "CC=@cc_set_by_configure@"
  PREPEND_DOTDOT_TO_RELATIVE_PATHS = sed \
  	-e 's|^ *[^ /][^ /]*/|%&|' \
  	-e 's| -B| -B%|g' \




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