From: Rosen Penev Date: Thu, 28 Nov 2019 19:19:32 +0000 (-0800) Subject: tools/pkgconf: Run pkg-config wrapper through shellcheck X-Git-Url: http://git.openwrt.org/feed/packa?a=commitdiff_plain;h=c60be196933807cc0db90a36704e4505edd83eeb;p=openwrt%2Fstaging%2Fjogo.git tools/pkgconf: Run pkg-config wrapper through shellcheck Mainly quoting fixes. Separated parameters by \ for easier readability. Signed-off-by: Rosen Penev --- diff --git a/tools/pkgconf/files/pkg-config b/tools/pkgconf/files/pkg-config index 82cc74ffcb..fa1faccc6c 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 $@ +pkg-config.real \ +--define-variable=prefix="${STAGING_PREFIX}" \ +--define-variable=exec_prefix="${STAGING_PREFIX}" \ +--define-variable=bindir="${STAGING_PREFIX}/bin" "$@"