summaryrefslogtreecommitdiff
path: root/lang/ruby/Makefile
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2000-02-02 04:07:36 +0000
committerwiz <wiz@pkgsrc.org>2000-02-02 04:07:36 +0000
commit54b77d469bfba67ec9724c4042c5965a5c9af6e7 (patch)
tree1d36b49f779c10b376e519fe39fa2d75103852d7 /lang/ruby/Makefile
parentd07e657e60b5585023b8011dac72675cb87e26eb (diff)
downloadpkgsrc-54b77d469bfba67ec9724c4042c5965a5c9af6e7.tar.gz
use CONFIGURE_ARGS+= instead of CONFIGURE_ARGS=, fixes shared
library building
Diffstat (limited to 'lang/ruby/Makefile')
-rw-r--r--lang/ruby/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/ruby/Makefile b/lang/ruby/Makefile
index 2712d66e21c..76d8434082a 100644
--- a/lang/ruby/Makefile
+++ b/lang/ruby/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2000/01/22 13:31:44 itojun Exp $
+# $NetBSD: Makefile,v 1.10 2000/02/02 04:07:36 wiz Exp $
#
DISTNAME= ruby-1.4.3
@@ -26,9 +26,9 @@ BUILD_DEFS+= USE_INET6
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --enable-shared
.if defined(USE_INET6) && ${USE_INET6} == YES
-CONFIGURE_ARGS= --enable-ipv6
+CONFIGURE_ARGS+= --enable-ipv6
.else
-CONFIGURE_ARGS= --disable-ipv6
+CONFIGURE_ARGS+= --disable-ipv6
.endif
MAKE_ENV+= DLDFLAGS="-L${LOCALBASE}/lib -R${LOCALBASE}/lib -L${X11BASE}/lib -R${X11BASE}/lib"