diff options
author | midipix <writeonce@midipix.org> | 2018-12-21 03:12:14 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-21 22:02:13 -0500 |
commit | 4abd9654db77c2810b5618ddcee94222ef35b31d (patch) | |
tree | 085f672b9dd8902fa0da4fe4bfebf31c421e1de3 | |
parent | 146d2ff2b6c85117f081dbc3da962f3b6f13f8b8 (diff) | |
download | sbpython3-4abd9654db77c2810b5618ddcee94222ef35b31d.tar.bz2 sbpython3-4abd9654db77c2810b5618ddcee94222ef35b31d.tar.xz |
project: custom config: configure: unify the syntax for yes/no tests.
-rw-r--r-- | project/config/cfgdefs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/config/cfgdefs.sh b/project/config/cfgdefs.sh index 1d3014c..347e0f6 100644 --- a/project/config/cfgdefs.sh +++ b/project/config/cfgdefs.sh @@ -152,7 +152,7 @@ cfgdefs_perform_common_tests() cfgtest_makevar_append '-DNCURSES_INTERNALS' # <panel.h> - if [ -n "$mb_panel_wrapper" ]; then + if [ _${mb_panel_wrapper:-} = _yes ]; then cfgtest_makevar_append '-I$(PROJECT_DIR)/wrappers' unset mb_panel_wrapper fi |