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:
bdrewery 2018-06-27 16:58:07 +00:00
parent 90ba157fec
commit d86fc2ed9b

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: