diff options
author | obrien <obrien@FreeBSD.org> | 2003-12-15 08:23:29 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-12-15 08:23:29 +0000 |
commit | 82a33f9cd322c6c43f9dca63133dd5e50238fa53 (patch) | |
tree | 57e5f61f3c985b550b5b2cff8ed3c246840ddef2 /shells/bash3 | |
parent | 8e508c2e9158165fdf7452c28858235ccf8975e8 (diff) | |
download | FreeBSD-ports-82a33f9cd322c6c43f9dca63133dd5e50238fa53.zip FreeBSD-ports-82a33f9cd322c6c43f9dca63133dd5e50238fa53.tar.gz |
Also pay attention to NOSHARED=yes as /usr/src and zsh does.
Requested by: Richard Coleman <richardcoleman@mindspring.com>
Diffstat (limited to 'shells/bash3')
-rw-r--r-- | shells/bash3/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shells/bash3/Makefile b/shells/bash3/Makefile index bfc3944..b3066ea 100644 --- a/shells/bash3/Makefile +++ b/shells/bash3/Makefile @@ -34,7 +34,7 @@ COMMENT= The GNU Bourne Again Shell WRKSRC= ${WRKDIR}/bash-${PORTVERSION:C/\....$//} GNU_CONFIGURE= Yes CONFIGURE_ARGS= --with-installed-readline -.if defined(WANT_STATIC_BASH) || defined(NO_DYNAMICROOT) +.if defined(WANT_STATIC_BASH) || defined(NO_DYNAMICROOT) || (defined(NOSHARED) && ( ${NOSHARED} != "no" && ${NOSHARED} != "NO" )) CONFIGURE_ENV= LDFLAGS=-static .else CONFIGURE_ARGS+= --enable-static-link=no |