diff options
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/pkgconfig/pkgconfig.inc | 10 | ||||
-rw-r--r-- | meta/recipes-devtools/pkgconfig/pkgconfig/pkg-config-native.in | 7 |
2 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-devtools/pkgconfig/pkgconfig.inc b/meta/recipes-devtools/pkgconfig/pkgconfig.inc index c54e325ec7..c4fa456e92 100644 --- a/meta/recipes-devtools/pkgconfig/pkgconfig.inc +++ b/meta/recipes-devtools/pkgconfig/pkgconfig.inc | |||
@@ -15,6 +15,7 @@ DEPENDS_class-nativesdk = "" | |||
15 | SRC_URI = "http://pkgconfig.freedesktop.org/releases/pkg-config-${PV}.tar.gz \ | 15 | SRC_URI = "http://pkgconfig.freedesktop.org/releases/pkg-config-${PV}.tar.gz \ |
16 | file://autofoo.patch \ | 16 | file://autofoo.patch \ |
17 | file://glibconfig-sysdefs.h \ | 17 | file://glibconfig-sysdefs.h \ |
18 | file://pkg-config-native.in \ | ||
18 | file://disable-legacy.patch" | 19 | file://disable-legacy.patch" |
19 | 20 | ||
20 | S = "${WORKDIR}/pkg-config-${PV}/" | 21 | S = "${WORKDIR}/pkg-config-${PV}/" |
@@ -43,3 +44,12 @@ FILES_${PN} += "${datadir}/aclocal/pkg.m4" | |||
43 | # will end up requiring 'pkgconfig(pkg-config)'. Allow this behavior by | 44 | # will end up requiring 'pkgconfig(pkg-config)'. Allow this behavior by |
44 | # specifying an appropriate provide. | 45 | # specifying an appropriate provide. |
45 | RPROVIDES_${PN} += "pkgconfig(pkg-config) (= ${PV})" | 46 | RPROVIDES_${PN} += "pkgconfig(pkg-config) (= ${PV})" |
47 | |||
48 | # Install a pkg-config-native wrapper that will use the native sysroot instead | ||
49 | # of the MACHINE sysroot, for using pkg-config when building native tools. | ||
50 | do_install_append_class-native () { | ||
51 | sed -e "s|@PATH_NATIVE@|${PKG_CONFIG_PATH}|" \ | ||
52 | -e "s|@LIBDIR_NATIVE@|${PKG_CONFIG_LIBDIR}|" \ | ||
53 | < ${WORKDIR}/pkg-config-native.in > ${B}/pkg-config-native | ||
54 | install -m755 ${B}/pkg-config-native ${D}${bindir}/pkg-config-native | ||
55 | } | ||
diff --git a/meta/recipes-devtools/pkgconfig/pkgconfig/pkg-config-native.in b/meta/recipes-devtools/pkgconfig/pkgconfig/pkg-config-native.in new file mode 100644 index 0000000000..5e44bb435c --- /dev/null +++ b/meta/recipes-devtools/pkgconfig/pkgconfig/pkg-config-native.in | |||
@@ -0,0 +1,7 @@ | |||
1 | #! /bin/sh | ||
2 | |||
3 | PKG_CONFIG_PATH="@PATH_NATIVE@" | ||
4 | PKG_CONFIG_LIBDIR="@LIBDIR_NATIVE@" | ||
5 | unset PKG_CONFIG_SYSROOT_DIR | ||
6 | |||
7 | pkg-config "$@" | ||