From 24aefaec62f87f7d958376c8a0152adb649f4419 Mon Sep 17 00:00:00 2001 From: Ted Hess Date: Tue, 13 Nov 2018 15:40:30 -0500 Subject: [PATCH] tools/pkg-config: Handle variable substitution of 'bindir' to redirect to STAGING_DIR/bin Signed-off-by: Ted Hess (cherry picked from commit 042d68a19593ac796098845366a235f5465816da) --- tools/pkg-config/files/pkg-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pkg-config/files/pkg-config b/tools/pkg-config/files/pkg-config index bf95380e7f..82cc74ffcb 100755 --- a/tools/pkg-config/files/pkg-config +++ b/tools/pkg-config/files/pkg-config @@ -1,3 +1,3 @@ #!/bin/sh -pkg-config.real --define-variable=prefix=${STAGING_PREFIX} --define-variable=exec_prefix=${STAGING_PREFIX} $@ +pkg-config.real --define-variable=prefix=${STAGING_PREFIX} --define-variable=exec_prefix=${STAGING_PREFIX} --define-variable=bindir=${STAGING_PREFIX}/bin $@ -- 2.30.2