diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2013-01-14 22:59:07 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2013-01-14 22:59:07 +0800 |
commit | 7a95f722b6984b156e34fe378f81505921aa80cf (patch) | |
tree | 5cb9b74ab485bd042608c9ba49dea78d5f3a20e7 | |
parent | 9383bfc1f798c7c20ee9f83b59e1c71ef2443be1 (diff) | |
download | freebsd-ports-gnome-7a95f722b6984b156e34fe378f81505921aa80cf.tar.gz freebsd-ports-gnome-7a95f722b6984b156e34fe378f81505921aa80cf.tar.zst freebsd-ports-gnome-7a95f722b6984b156e34fe378f81505921aa80cf.zip |
Use pre-defined knob for the static build option (STATIC_BASH -> STATIC).
-rw-r--r-- | shells/bash-devel/Makefile | 5 | ||||
-rw-r--r-- | shells/bash-static-devel/Makefile | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/shells/bash-devel/Makefile b/shells/bash-devel/Makefile index e23544e82b30..c86a4a47cf98 100644 --- a/shells/bash-devel/Makefile +++ b/shells/bash-devel/Makefile @@ -26,12 +26,11 @@ COMMENT= The GNU Project's Bourne Again SHell IGNOREFILES= FAQ -OPTIONS_DEFINE= IMPLICITCD COLONBREAKSWORDS HELP NLS STATIC_BASH SYSLOG DOCS +OPTIONS_DEFINE= IMPLICITCD COLONBREAKSWORDS HELP NLS STATIC SYSLOG DOCS OPTIONS_DEFAULT=IMPLICITCD COLONBREAKSWORDS HELP NLS IMPLICITCD_DESC= Use directory name alone to cd into it COLONBREAKSWORDS_DESC= Colons break words HELP_DESC= Install the help files -STATIC_BASH_DESC= Compile without shared libs SYSLOG_DESC= Compile with syslog support .include <bsd.port.pre.mk> @@ -62,7 +61,7 @@ CONFIGURE_ARGS= --without-bash-malloc \ --disable-rpath \ --enable-disabled-builtins -.if ${PORT_OPTIONS:MSTATIC_BASH} || defined(NO_DYNAMICROOT) || (defined(NOSHARED) && ${NOSHARED:L} != "no") +.if ${PORT_OPTIONS:MSTATIC} || defined(NO_DYNAMICROOT) || (defined(NOSHARED) && ${NOSHARED:L} != "no") .if empty(PORT_OPTIONS:MNLS) WITHOUT_NLS=yes .endif diff --git a/shells/bash-static-devel/Makefile b/shells/bash-static-devel/Makefile index e942ae860ffb..a9ad10167aa2 100644 --- a/shells/bash-static-devel/Makefile +++ b/shells/bash-static-devel/Makefile @@ -3,6 +3,6 @@ MASTERDIR= ${.CURDIR}/../../shells/bash-devel -OPTIONS_SET= STATIC_BASH +OPTIONS_SET= STATIC .include "${MASTERDIR}/Makefile" |