diff options
author | adam <adam> | 2004-05-06 06:32:22 +0000 |
---|---|---|
committer | adam <adam> | 2004-05-06 06:32:22 +0000 |
commit | 95c97b245240157f91e6bde4bbd3a202ccd9499d (patch) | |
tree | fa0fa36f1249605eb7ec24810a5c1b7cc4ef2e54 /mk | |
parent | a5fa60b3f39d32e3062d9986b6ea0bb4afdd1a73 (diff) | |
download | pkgsrc-95c97b245240157f91e6bde4bbd3a202ccd9499d.tar.gz |
Use system maximum command line length
Diffstat (limited to 'mk')
-rw-r--r-- | mk/defs.Darwin.mk | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/mk/defs.Darwin.mk b/mk/defs.Darwin.mk index ddfa32af6c2..bc84630b379 100644 --- a/mk/defs.Darwin.mk +++ b/mk/defs.Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Darwin.mk,v 1.73 2004/05/04 00:11:23 danw Exp $ +# $NetBSD: defs.Darwin.mk,v 1.74 2004/05/06 06:32:22 adam Exp $ # # Variable definitions for the Darwin operating system. @@ -151,8 +151,7 @@ LOCALBASE?= ${DESTDIR}/usr/pkg # check for maximum command line length and set it in configure's environment, # to avoid a test required by the libtool script that takes forever. -# FIXME: Adjust to work on this system and enable the lines below. -#.if defined(GNU_CONFIGURE) && defined(USE_LIBTOOL) -#_OPSYS_MAX_CMDLEN!= /sbin/sysctl -n kern.argmax -#CONFIGURE_ENV+= lt_cv_sys_max_cmd_len=${_OPSYS_MAX_CMDLEN} -#.endif +.if defined(GNU_CONFIGURE) && defined(USE_LIBTOOL) +_OPSYS_MAX_CMDLEN!= /usr/sbin/sysctl -n kern.argmax +CONFIGURE_ENV+= lt_cv_sys_max_cmd_len=${_OPSYS_MAX_CMDLEN} +.endif |