diff options
author | tron <tron> | 2007-11-26 00:52:32 +0000 |
---|---|---|
committer | tron <tron> | 2007-11-26 00:52:32 +0000 |
commit | 0382b7569e419c02e356dffc5eac907a03e4ca9b (patch) | |
tree | b07d1b63600dfbb1273155e49fc556b099355d98 /sysutils/coreutils | |
parent | 9e75c13e775725a2ea994a7ae1e9d253bc1db48c (diff) | |
download | pkgsrc-0382b7569e419c02e356dffc5eac907a03e4ca9b.tar.gz |
Use work around from "bug-gnulib" mailing list to fix build problem
under Mac OS X Leopard.
Diffstat (limited to 'sysutils/coreutils')
-rw-r--r-- | sysutils/coreutils/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysutils/coreutils/Makefile b/sysutils/coreutils/Makefile index c46f7e55b56..db352e2bea9 100644 --- a/sysutils/coreutils/Makefile +++ b/sysutils/coreutils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2007/07/19 09:07:43 tron Exp $ +# $NetBSD: Makefile,v 1.40 2007/11/26 00:52:32 tron Exp $ DISTNAME= coreutils-6.9 CATEGORIES= sysutils @@ -27,6 +27,10 @@ TEST_TARGET= check CONFIGURE_ENV+= ac_list_mounted_fs=found .endif +.if ${OPSYS} == "Darwin" && !empty(OS_VERSION:M9.*) +CONFIGURE_ENV+= jm_cv_func_svid_putenv=yes +.endif + # Exclude programs from PLIST which aren't built on a platform. .if ${OPSYS} == "Interix" PLIST_SUBST+= COREUTILS_HAVE_HOSTID="@comment " |