mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
source-builder: Handle modern pkg-config symlinks
Modern versions of pkg-config include new architecture-specific symlinks that are sometimes checked before "pkg-config". This causes builds to detect the system pkg-config instead of the local overridden pkg-config and fail to build properly. This overrides those new symlinks to restore build functionality.
This commit is contained in:
parent
5f4df1bd18
commit
4dad5b3e5f
3
source-builder/aarch64-linux-gnu-pkg-config
Executable file
3
source-builder/aarch64-linux-gnu-pkg-config
Executable file
@ -0,0 +1,3 @@
|
||||
#! /bin/sh
|
||||
base=$(dirname $0)
|
||||
exec ${base}/pkg-config $*
|
3
source-builder/x86_64-linux-gnu-pkg-config
Executable file
3
source-builder/x86_64-linux-gnu-pkg-config
Executable file
@ -0,0 +1,3 @@
|
||||
#! /bin/sh
|
||||
base=$(dirname $0)
|
||||
exec ${base}/pkg-config $*
|
Loading…
x
Reference in New Issue
Block a user