summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/pkgconf/pkgconf/pkg-config-esdk.in
blob: d4ac71dff233a573efd818918a66c6606230c255 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh

# Orignal pkg-config-native action when called as pkg-config-native
# NO Change here
if [ "pkg-config-native" = "`basename $0`" ] ; then
	PKG_CONFIG_PATH="@PATH_NATIVE@"
	PKG_CONFIG_LIBDIR="@LIBDIR_NATIVE@"
else
	# in this case check if we are in the esdk
	if [ "$OE_SKIP_SDK_CHECK" = "1" ] ; then
		parentpid=`ps -o ppid= -p $$`
		parentpid_info=`ps -wo comm= -o args= -p $parentpid`

		# check if we are being called from  the kernel's make menuconfig
		if ( echo $parentpid_info | grep -q check-lxdialog ) ; then
			PKG_CONFIG_PATH="@PATH_NATIVE@"
			PKG_CONFIG_LIBDIR="@LIBDIR_NATIVE@"
		fi
	fi
fi

pkg-config "$@"