diff options
author | 2019-10-01 13:41:30 +0100 | |
---|---|---|
committer | 2019-10-19 22:56:46 +0200 | |
commit | 8905454daf4ad00c3fdfd6f5e1aa7475dcabf9e5 (patch) | |
tree | 929b0021ca88f3af5f45d106d9a05fee45c8aef2 /package/pkgconf | |
parent | 34deac05a5c61f16f5dba2416d38bb4fba44bcdb (diff) | |
download | buildroot-8905454daf4ad00c3fdfd6f5e1aa7475dcabf9e5.tar.gz buildroot-8905454daf4ad00c3fdfd6f5e1aa7475dcabf9e5.tar.bz2 |
pkgconf: Split pkgconf command into multi-line
The pkgconf command is a long and confusing line, which is about to get
longer. Split it up into logical stages so that it is easier to
visualise changes.
Signed-off-by: Thomas Preston <thomas.preston@codethink.co.uk>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to 'package/pkgconf')
-rw-r--r-- | package/pkgconf/pkg-config.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/pkgconf/pkg-config.in b/package/pkgconf/pkg-config.in index 99c0add8fb..8795f64b68 100644 --- a/package/pkgconf/pkg-config.in +++ b/package/pkgconf/pkg-config.in @@ -2,4 +2,7 @@ PKGCONFDIR=$(dirname $0) DEFAULT_PKG_CONFIG_LIBDIR=${PKGCONFDIR}/../@STAGING_SUBDIR@/usr/lib/pkgconfig:${PKGCONFDIR}/../@STAGING_SUBDIR@/usr/share/pkgconfig DEFAULT_PKG_CONFIG_SYSROOT_DIR=${PKGCONFDIR}/../@STAGING_SUBDIR@ -PKG_CONFIG_LIBDIR=${PKG_CONFIG_LIBDIR:-${DEFAULT_PKG_CONFIG_LIBDIR}} PKG_CONFIG_SYSROOT_DIR=${PKG_CONFIG_SYSROOT_DIR:-${DEFAULT_PKG_CONFIG_SYSROOT_DIR}} exec ${PKGCONFDIR}/pkgconf @STATIC@ "$@" + +PKG_CONFIG_LIBDIR=${PKG_CONFIG_LIBDIR:-${DEFAULT_PKG_CONFIG_LIBDIR}} \ + PKG_CONFIG_SYSROOT_DIR=${PKG_CONFIG_SYSROOT_DIR:-${DEFAULT_PKG_CONFIG_SYSROOT_DIR}} \ + exec ${PKGCONFDIR}/pkgconf @STATIC@ "$@" |