summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authoradam <adam>2004-05-06 06:32:22 +0000
committeradam <adam>2004-05-06 06:32:22 +0000
commit1ec5cfe69408e2cb034ebaa638feb54516740f98 (patch)
treefa0fa36f1249605eb7ec24810a5c1b7cc4ef2e54 /mk
parent07bf1103f9b0896d33d726ba1b64dffd0a0ed137 (diff)
downloadpkgsrc-1ec5cfe69408e2cb034ebaa638feb54516740f98.tar.gz
Use system maximum command line length
Diffstat (limited to 'mk')
-rw-r--r--mk/defs.Darwin.mk11
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