View | Details | Raw Unified | Return to bug 89772
Collapse All | Expand All

(-)bash/Makefile (-1 / +1 lines)
Lines 56-62 Link Here
56
			--disable-rpath \
56
			--disable-rpath \
57
			--enable-disabled-builtins
57
			--enable-disabled-builtins
58
58
59
.if defined(WANT_STATIC_BASH) || defined(NO_DYNAMICROOT) || (defined(NOSHARED) && ${NOSHARED:L} != "no")
59
.if defined(WITH_STATIC_BASH) || defined(NO_DYNAMICROOT) || (defined(NOSHARED) && ${NOSHARED:L} != "no")
60
.if !defined(WITHOUT_NLS)
60
.if !defined(WITHOUT_NLS)
61
WITHOUT_NLS=yes
61
WITHOUT_NLS=yes
62
.endif
62
.endif
(-)bash2/Makefile (-1 / +1 lines)
Lines 36-42 Link Here
36
WRKSRC=		${WRKDIR}/bash-${PORTVERSION:C/\....$//}
36
WRKSRC=		${WRKDIR}/bash-${PORTVERSION:C/\....$//}
37
GNU_CONFIGURE=	Yes
37
GNU_CONFIGURE=	Yes
38
CONFIGURE_ARGS=	--with-installed-readline
38
CONFIGURE_ARGS=	--with-installed-readline
39
.if defined(WANT_STATIC_BASH) || defined(NO_DYNAMICROOT) || (defined(NOSHARED) && ( ${NOSHARED} != "no" && ${NOSHARED} != "NO" ))
39
.if defined(WITH_STATIC_BASH) || defined(NO_DYNAMICROOT) || (defined(NOSHARED) && ( ${NOSHARED} != "no" && ${NOSHARED} != "NO" ))
40
CONFIGURE_ARGS+= --enable-static-link
40
CONFIGURE_ARGS+= --enable-static-link
41
.else
41
.else
42
CONFIGURE_ARGS+= --enable-static-link=no
42
CONFIGURE_ARGS+= --enable-static-link=no

Return to bug 89772