[OpenWrt-Devel] [PATCH 2/3] tools/pkgconf: Run pkg-config wrapper through shellcheck

Rosen Penev rosenp at gmail.com
Wed Nov 27 17:30:04 EST 2019


Mainly quoting fixes.

Separated parameters by \ for easier readability.

Switched to calling by dirname so that it can be called from any
directory.

Signed-off-by: Rosen Penev <rosenp at gmail.com>
---
 tools/pkgconf/files/pkg-config | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tools/pkgconf/files/pkg-config b/tools/pkgconf/files/pkg-config
index 82cc74ffcb..4b5e57b39f 100755
--- a/tools/pkgconf/files/pkg-config
+++ b/tools/pkgconf/files/pkg-config
@@ -1,3 +1,6 @@
 #!/bin/sh
 
-pkg-config.real --define-variable=prefix=${STAGING_PREFIX} --define-variable=exec_prefix=${STAGING_PREFIX} --define-variable=bindir=${STAGING_PREFIX}/bin $@
+"$(dirname "$0")pkg-config.real" \
+--define-variable=prefix="${STAGING_PREFIX}" \
+--define-variable=exec_prefix="${STAGING_PREFIX}" \
+--define-variable=bindir="${STAGING_PREFIX}/bin" "$@"
-- 
2.23.0


_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel



More information about the openwrt-devel mailing list