From 3ae1c025693a0a20f359dc0c3b7532c13b96e9f3 Mon Sep 17 00:00:00 2001 From: Nickolai Zeldovich Date: Sun, 3 Mar 2013 22:03:41 -0500 Subject: [PATCH] src/rxosd/Makefile.in: avoid infinite recursion in CC variable src/rxosd/Makefile sets CC=$(MT_CC). src/config/Makefile.config sets MT_CC=$(CC). Since both are recursive-expansion variables, this causes an infinite loop, and make complains about it: Makefile:25: *** Recursive variable `CC' references itself (eventually). Stop. This patch avoids setting CC in src/rxosd/Makefile.in altogether, since it does not appear to be necessary, as suggested by Jeffrey and Derrick. Change-Id: Ieaa5c5ed21d83629ea713a745e76d17ac7f76ec1 Reviewed-on: http://gerrit.openafs.org/9336 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- src/rxosd/Makefile.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/rxosd/Makefile.in b/src/rxosd/Makefile.in index b5985655c..0b6b86489 100644 --- a/src/rxosd/Makefile.in +++ b/src/rxosd/Makefile.in @@ -22,8 +22,6 @@ VOL=../vol OSDDBSRC=${srcdir}/../osddb FSINT=../fsint -CC=${MT_CC} - CLIENTOBJS=osd.o RXOSDOBJS=rxosd.o rxosd.ss.o rxosd.cs.o rxosd.xdr.o rxosd_hpss.o rxosd_dcache.o -- 2.39.5