]> git.michaelhowe.org Git - packages/o/openafs.git/commit
src/rxosd/Makefile.in: avoid infinite recursion in CC variable
authorNickolai Zeldovich <nickolai@csail.mit.edu>
Mon, 4 Mar 2013 03:03:41 +0000 (22:03 -0500)
committerDerrick Brashear <shadow@your-file-system.com>
Mon, 4 Mar 2013 12:47:28 +0000 (04:47 -0800)
commit3ae1c025693a0a20f359dc0c3b7532c13b96e9f3
tree4b569997d04977fca115930dfdf64a835951b868
parentfe9f4a93183c972225541b1ebf5ed5b5f484adff
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 <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@your-file-system.com>
src/rxosd/Makefile.in