diff options
author | adam <adam@pkgsrc.org> | 2004-05-06 06:32:22 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2004-05-06 06:32:22 +0000 |
commit | f8281e33186ec7fedeff28cfb9f16c4750c54ba6 (patch) | |
tree | fa0fa36f1249605eb7ec24810a5c1b7cc4ef2e54 /mk | |
parent | 73e5eb0528e91b36cb0c915a632657114f210848 (diff) | |
download | pkgsrc-f8281e33186ec7fedeff28cfb9f16c4750c54ba6.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 |