From b4b402239669fdcdb80ba9e78ee62f0fbbbf7ba4 Mon Sep 17 00:00:00 2001 From: jlam Date: Thu, 5 Feb 2004 07:37:48 +0000 Subject: 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. --- mk/bsd.pkg.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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*) \ -- cgit v1.2.3