From 778a3def1185c1e43ca3d78de34231cedd7cb5ff Mon Sep 17 00:00:00 2001 From: Emanuel Haupt Date: Mon, 14 Jan 2013 14:59:07 +0000 Subject: [PATCH] Use pre-defined knob for the static build option (STATIC_BASH -> STATIC). --- shells/bash-devel/Makefile | 5 ++--- 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 @@ -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"