CCACHE_BUILD: Don't try using ccache for compile-linking .c files.

Without -c ccache just executes the real compiler.

MFC after:	2 weeks
Sponsored by:	Dell EMC
This commit is contained in:
Bryan Drewery 2018-06-27 16:58:07 +00:00
parent 759aa20d7b
commit 90eb413a33
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=335710

View File

@ -5,7 +5,7 @@
chmod a+x ${.TARGET}
.c:
${CC} ${CFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} -o ${.TARGET}
${CC:N${CCACHE_BIN}} ${CFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} -o ${.TARGET}
${CTFCONVERT_CMD}
.c.o: