diff options
author | jlam <jlam> | 2004-02-05 07:37:48 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-02-05 07:37:48 +0000 |
commit | b4b402239669fdcdb80ba9e78ee62f0fbbbf7ba4 (patch) | |
tree | 11256a8fe4ea47edf302d39685ab87efe54c6219 | |
parent | cca8895f8ea23af24fe9bf2b0b340bcd7b6b80ab (diff) | |
download | pkgsrc-b4b402239669fdcdb80ba9e78ee62f0fbbbf7ba4.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.
-rw-r--r-- | mk/bsd.pkg.mk | 3 |
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*) \ |