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]

[PATCH] Fix libf2c Makefile.in


This patch from Alex helped me get libf2c building for irix6.5 with
multilibs. I'd really appreciate this going on the branch because I have
trouble building without it.

2002-05-02  Alexandre Oliva  <aoliva@redhat.com>

	* Makefile.in: Fix for multilibbed natives.

OK?

-eric

-- 
A fire drill does not demand
a fire.

Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/libf2c/Makefile.in,v
retrieving revision 1.48
diff -u -p -w -r1.48 Makefile.in
--- Makefile.in	29 Jan 2002 13:21:06 -0000	1.48
+++ Makefile.in	2 May 2002 19:04:33 -0000
@@ -21,6 +21,7 @@
 
 SHELL = /bin/sh
 MAKEOVERRIDES=
+.NOEXPORTS:
 
 #### Start of system configuration section. ####
 
@@ -73,6 +74,7 @@ RANLIB = @RANLIB@
 # Quote this way so that it can be used to set shell variables too.
 FLAGS_TO_PASS= \
 	CC='$(CC)' \
+	LD='$(LD)' \
 	LIBTOOL='$(LIBTOOL)' \
 	CFLAGS='$(CFLAGS)' \
 	CPPFLAGS='$(CPPFLAGS)' \


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