diff options
author | wiz <wiz> | 2000-02-02 04:07:36 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-02-02 04:07:36 +0000 |
commit | 5dae9ad84cc2307489cebf966ef582cdd33ef9cc (patch) | |
tree | 1d36b49f779c10b376e519fe39fa2d75103852d7 /lang/ruby | |
parent | 49e2342c4e5fcc9225a98b84ca10e7eb2f6767c3 (diff) | |
download | pkgsrc-5dae9ad84cc2307489cebf966ef582cdd33ef9cc.tar.gz |
use CONFIGURE_ARGS+= instead of CONFIGURE_ARGS=, fixes shared
library building
Diffstat (limited to 'lang/ruby')
-rw-r--r-- | lang/ruby/Makefile | 6 |
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" |