summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam>2004-02-05 07:37:48 +0000
committerjlam <jlam>2004-02-05 07:37:48 +0000
commitc97415a81deea2737703bf0e2a55b6961a004b98 (patch)
tree11256a8fe4ea47edf302d39685ab87efe54c6219 /mk
parenta1f29c135ab09ab6f97d1e22dacd8ee49f61e063 (diff)
downloadpkgsrc-c97415a81deea2737703bf0e2a55b6961a004b98.tar.gz
Pass the PATH when executing ${CC} so that the compiler may be found when
CC is something like ccache or distcc that relies on finding the true compiler in the PATH.
Diffstat (limited to 'mk')
-rw-r--r--mk/bsd.pkg.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index 059a58ae4d1..f28504ecbf0 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.1371 2004/02/05 05:05:54 hubertf Exp $
+# $NetBSD: bsd.pkg.mk,v 1.1372 2004/02/05 07:37:48 jlam Exp $
#
# This file is in the public domain.
#
@@ -3005,6 +3005,7 @@ show-shlib-type:
sotype=none; \
if [ "X${MKPIC}" != "Xno" -a "X${NOPIC}" = "X" ]; then \
${ECHO} "int main() { return(0); }" > a.$$$$.c; \
+ ${SETENV} PATH=${PATH} \
${CC} ${CFLAGS} a.$$$$.c -o a.$$$$.out; \
case `${FILE_CMD} a.$$$$.out` in \
*ELF*dynamically*) \