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]
Other format: [Raw text]

[gccgo] Pass GCCGO explicitly when running a recursive make


This fixes an oversight in libgo/Makefile.am: I wasn't passing GCCGO
for a recursive make.  This usually doesn't matter much, but it does
matter if GCCGO is set when invoking the top level make.  Committed to
gccgo branch.

Ian


Index: libgo/Makefile.am
===================================================================
--- libgo/Makefile.am	(revision 154273)
+++ libgo/Makefile.am	(working copy)
@@ -45,6 +45,7 @@ AM_MAKEFLAGS = \
 	"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
 	"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
 	"GCCGO_FOR_TARGET=$(GCCGO_FOR_TARGET)" \
+	"GCCGO=$(GCCGO)" \
 	"GOFLAGS=$(GOFLAGS)" \
 	"INSTALL=$(INSTALL)" \
 	"INSTALL_DATA=$(INSTALL_DATA)" \

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