diff options
author | Phil Blundell <philb@gnu.org> | 2004-07-29 20:28:53 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-07-29 20:28:53 +0000 |
commit | 6f052e0ec8eceb7ad57736bca700d4bc8c8ea24e (patch) | |
tree | d428ee18becf43b579a6197dc167ff6c1b62e57f /classes | |
parent | a984159bf0476b6c2ec1d9efb0d7b7686b5992e5 (diff) |
undo previous faulty change
BKrev: 41095e05Js38xaZ5TO_a5rv6WGyILg
Diffstat (limited to 'classes')
-rw-r--r-- | classes/pkgconfig.oeclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/classes/pkgconfig.oeclass b/classes/pkgconfig.oeclass index d791e626ec..83f3a3d9f2 100644 --- a/classes/pkgconfig.oeclass +++ b/classes/pkgconfig.oeclass @@ -6,11 +6,11 @@ def get_pkgconfig_mangle(d): import oe.data s = "-e ''" if not oe.data.inherits_class('native', d): - s += " -e 's:${libdir}$:${STAGING_LIBDIR}:;'" - s += " -e 's:${includedir}$:${STAGING_INCDIR}:;'" - s += " -e 's:${datadir}$:${STAGING_DATADIR}:'" - s += " -e 's:${prefix}$:${STAGING_LIBDIR}/..:'" - s += " -e 's:${exec_prefix}$:${STAGING_LIBDIR}/..:'" + s += " -e 's:${libdir}:${STAGING_LIBDIR}:;'" + s += " -e 's:${includedir}:${STAGING_INCDIR}:;'" + s += " -e 's:${datadir}:${STAGING_DATADIR}:'" + s += " -e 's:${prefix}:${STAGING_LIBDIR}/..:'" + s += " -e 's:${exec_prefix}:${STAGING_LIBDIR}/..:'" return s do_stage_append () { |