[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lmi-commits] [lmi] master b53fd90 07/12: Suppress misleading shellcheck
From: |
Greg Chicares |
Subject: |
[lmi-commits] [lmi] master b53fd90 07/12: Suppress misleading shellcheck diagnostics |
Date: |
Sun, 12 May 2019 22:25:16 -0400 (EDT) |
branch: master
commit b53fd901ea809d9f719ec4873fffa5a07f198bee
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>
Suppress misleading shellcheck diagnostics
Variables containing 'configure' options should not be double-quoted.
---
install_wx.sh | 2 ++
install_wxpdfdoc.sh | 2 ++
2 files changed, 4 insertions(+)
diff --git a/install_wx.sh b/install_wx.sh
index 3bca441..825abea 100755
--- a/install_wx.sh
+++ b/install_wx.sh
@@ -151,6 +151,8 @@ fi
mkdir --parents "$build_dir"
cd "$build_dir"
+# 'configure' options must not be double-quoted
+# shellcheck disable=SC2086
"$proxy_wx_dir"/configure $config_options
$MAKE
$MAKE install
diff --git a/install_wxpdfdoc.sh b/install_wxpdfdoc.sh
index 7791499..ee879fa 100755
--- a/install_wxpdfdoc.sh
+++ b/install_wxpdfdoc.sh
@@ -117,6 +117,8 @@ fi
mkdir --parents "$build_dir"
cd "$build_dir"
+# 'configure' options must not be double-quoted
+# shellcheck disable=SC2086
"$proxy_wxpdfdoc_dir"/configure $config_options
$MAKE
$MAKE install
- [lmi-commits] [lmi] master updated (fe191f3 -> 46d19dd), Greg Chicares, 2019/05/12
- [lmi-commits] [lmi] master d3d3147 04/12: Use MinGW directory only as a variable, never as a literal, Greg Chicares, 2019/05/12
- [lmi-commits] [lmi] master f9b8091 09/12: Resolve all shellcheck "SC2003" warnings, Greg Chicares, 2019/05/12
- [lmi-commits] [lmi] master 2c95b12 08/12: Resolve all shellcheck "SC2046" warnings, Greg Chicares, 2019/05/12
- [lmi-commits] [lmi] master 502a7d2 05/12: Install MinGW gcc after LMI_* environment variables have been set, Greg Chicares, 2019/05/12
- [lmi-commits] [lmi] master b53fd90 07/12: Suppress misleading shellcheck diagnostics,
Greg Chicares <=
- [lmi-commits] [lmi] master 66ae5a6 03/12: Clarify that obsolete makefiles needn't be maintained, Greg Chicares, 2019/05/12
- [lmi-commits] [lmi] master d5123bd 02/12: Replace some dead gmane URLs, Greg Chicares, 2019/05/12
- [lmi-commits] [lmi] master e91fdeb 10/12: Resolve all shellcheck "SC1117" warnings, Greg Chicares, 2019/05/12
- [lmi-commits] [lmi] master 0c5f914 06/12: Install gcc in an architecture-dependent directory, Greg Chicares, 2019/05/12
- [lmi-commits] [lmi] master 46d19dd 12/12: Resolve all shellcheck "SC2043" warnings, Greg Chicares, 2019/05/12
- [lmi-commits] [lmi] master ca39972 01/12: Remove outdated cross-compiling instructions, Greg Chicares, 2019/05/12
- [lmi-commits] [lmi] master 325dc9f 11/12: Resolve all shellcheck "SC2129" warnings, Greg Chicares, 2019/05/12