[OpenAFS-devel] force paths for CC and LD on sgi_65, gnu ld in path screws things up

Nathan Neulinger nneul@umr.edu
Thu, 21 Dec 2000 08:40:50 -0600


--+HP7ph2BbKc20aGI
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Patch changes Makefile.sgi_65 to wire CC=/usr/bin/cc and LD=/usr/bin/ld 
instead of CC=cc and LD=ld.
 
If you have gnu ld in your path on sgi, it breaks the build. (Already 
broken, but incrementally trying to fix some things at least.)

-- Nathan

------------------------------------------------------------
Nathan Neulinger                       EMail:  nneul@umr.edu
University of Missouri - Rolla         Phone: (573) 341-4841
Computing Services                       Fax: (573) 341-4216

--+HP7ph2BbKc20aGI
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="makefile-sgi65-ldccpaths.diff"

Index: config/Makefile.sgi_65
===================================================================
RCS file: /cvs/openafs/src/config/Makefile.sgi_65,v
retrieving revision 1.2
diff -u -r1.2 Makefile.sgi_65
--- config/Makefile.sgi_65	2000/11/04 10:04:20	1.2
+++ config/Makefile.sgi_65	2000/12/21 14:38:54
@@ -33,9 +33,9 @@
 AR=ar
 AS=as
 CP=cp
-MT_CC=cc
+MT_CC=/usr/bin/cc
 INSTALL=${SRCDIR}bin/install
-LD=ld   
+LD=/usr/bin/ld   
 LEX=lex
 MV=mv
 RANLIB=/bin/true

--+HP7ph2BbKc20aGI--