diff options
author | schmonz <schmonz@pkgsrc.org> | 2002-06-02 00:40:18 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2002-06-02 00:40:18 +0000 |
commit | 63ce60909f67c3490876ef1dabff5b3bae8f4dde (patch) | |
tree | ad45e76d86a46daf5ed3f994343e1b31b5d441cd /mk/defs.Linux.mk | |
parent | d534de86c38277903958f838616627d297fbdcfe (diff) | |
download | pkgsrc-63ce60909f67c3490876ef1dabff5b3bae8f4dde.tar.gz |
Introduce CPP_PRECOMP_FLAGS, defaulting to "-no-cpp-precomp" on
Darwin (meaning "don't use the OS X cpp that groks precompiled
headers", which gets us the more compatible GNU cpp instead), and
blank on other systems.
Approved by agc and yyamano.
Diffstat (limited to 'mk/defs.Linux.mk')
-rw-r--r-- | mk/defs.Linux.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/defs.Linux.mk b/mk/defs.Linux.mk index db9669a2d6e..8aebc45ba80 100644 --- a/mk/defs.Linux.mk +++ b/mk/defs.Linux.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Linux.mk,v 1.25 2002/04/09 22:15:41 jlam Exp $ +# $NetBSD: defs.Linux.mk,v 1.26 2002/06/02 00:40:19 schmonz Exp $ # # Variable definitions for the Linux operating system. @@ -59,6 +59,7 @@ TYPE?= type WC?= /usr/bin/wc XARGS?= /usr/bin/xargs -r +CPP_PRECOMP_FLAGS?= # unset DEF_UMASK?= 022 DEFAULT_SERIAL_DEVICE?= /dev/null GROUPADD?= /usr/sbin/groupadd |