diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2018-06-27 19:29:15 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2018-06-27 19:29:15 +0000 |
commit | 96a0acc4ce1cbac643c51d118db1912dd63f6bb8 (patch) | |
tree | efbf802cf4604eb156dedd84aa57cecab84d0407 /lib/libpam | |
parent | a6c0b9d08512442e4f4a2359cb5c87189ad659d7 (diff) | |
download | src-96a0acc4ce1cbac643c51d118db1912dd63f6bb8.tar.gz src-96a0acc4ce1cbac643c51d118db1912dd63f6bb8.zip |
Don't use CCACHE for linking.
MFC after: 2 weeks
Sponsored by: Dell EMC
Notes
Notes:
svn path=/head/; revision=335733
Diffstat (limited to 'lib/libpam')
-rw-r--r-- | lib/libpam/static_libpam/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libpam/static_libpam/Makefile b/lib/libpam/static_libpam/Makefile index 2a8cc998ac87..f8a355d952a3 100644 --- a/lib/libpam/static_libpam/Makefile +++ b/lib/libpam/static_libpam/Makefile @@ -64,6 +64,7 @@ CLEANFILES+= openpam_static.o \ openpam_static_modules.o openpam_static_modules.o: openpam_static.o ${STATIC_MODULES} - ${CC} -nostdlib ${LDFLAGS} -o ${.TARGET} -r -Wl,--whole-archive ${.ALLSRC} + ${CC:N${CCACHE_BIN}} -nostdlib ${LDFLAGS} -o ${.TARGET} \ + -r -Wl,--whole-archive ${.ALLSRC} .include "${.CURDIR:H}/libpam/Makefile" |