mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00

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.
4 lines
57 B
Bash
Executable File
4 lines
57 B
Bash
Executable File
#! /bin/sh
|
|
base=$(dirname $0)
|
|
exec ${base}/pkg-config $*
|