diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-09-02 10:24:06 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-09-02 10:24:06 +0000 |
commit | 880610a3aada4162a921a77977d1d5d6dfc95d2a (patch) | |
tree | 8cf010b3df7653aefbbb72deb179d3c635d8ee3f /packages/xfce | |
parent | a18bd6c9aa2b5c246860a89a7cedffa3825fccef (diff) |
Fix PKG_CONFIG_PATH references which should be PKG_CONFIG_DIR
Diffstat (limited to 'packages/xfce')
-rw-r--r-- | packages/xfce/xfce-mcs-manager.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/xfce/xfce-mcs-manager.inc b/packages/xfce/xfce-mcs-manager.inc index c50bf0ca64..e4fa10f07f 100644 --- a/packages/xfce/xfce-mcs-manager.inc +++ b/packages/xfce/xfce-mcs-manager.inc @@ -20,6 +20,6 @@ do_stage() { # for this particular .pc, so the following will suffice: do_stage_append () { - install -d ${PKG_CONFIG_PATH} - sed -e 's:${includedir}:${STAGING_INCDIR}:;' ${S}/xfce-mcs-manager/xfce-mcs-manager.pc >${PKG_CONFIG_PATH}/xfce-mcs-manager.pc + install -d ${PKG_CONFIG_DIR} + sed -e 's:${includedir}:${STAGING_INCDIR}:;' ${S}/xfce-mcs-manager/xfce-mcs-manager.pc >${PKG_CONFIG_DIR}/xfce-mcs-manager.pc } |