diff options
author | Chris Larson <clarson@kergoth.com> | 2004-04-01 17:57:34 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-04-01 17:57:34 +0000 |
commit | 7d0f4d1ff2349647def5f78e6f07d4ce0bc7fffc (patch) | |
tree | 0e273dc0c82ac47904f723db0eaaa44679f0df66 /intltool | |
parent | 0851f86cd64bd723f578846da6676c8782ac65d7 (diff) |
Merge http://openembedded.bkbits.net/packages
into linux.local:/home/kergoth/code/packages
2004/03/31 12:17:45-05:00 local!kergoth
appweb_1.0.2.oe:
Correct LD_LIBRARY_PATH referencing itself.
tremor_20030325.oe:
Correct the tremor include path passed into the staging make install.
2004/03/30 21:40:59-05:00 local!kergoth
Some fixups per the latest staging changes.
BKrev: 406c580emotmj9yxCNGAhNEinlE4uw
Diffstat (limited to 'intltool')
-rw-r--r-- | intltool/intltool-native_0.30.oe | 4 | ||||
-rw-r--r-- | intltool/intltool_0.30.oe | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/intltool/intltool-native_0.30.oe b/intltool/intltool-native_0.30.oe index 109e488632..94fd370173 100644 --- a/intltool/intltool-native_0.30.oe +++ b/intltool/intltool-native_0.30.oe @@ -3,6 +3,6 @@ inherit native DEPENDS = "" do_stage () { - install -d ${STAGING_DIR}/share/aclocal - install -m 0644 intltool.m4 xml-i18n-tools.m4 ${STAGING_DIR}/share/aclocal/ + install -d ${STAGING_DATADIR}/aclocal + install -m 0644 intltool.m4 xml-i18n-tools.m4 ${STAGING_DATADIR}/aclocal/ } diff --git a/intltool/intltool_0.30.oe b/intltool/intltool_0.30.oe index 04914d74d9..1f7b3298b7 100644 --- a/intltool/intltool_0.30.oe +++ b/intltool/intltool_0.30.oe @@ -9,5 +9,5 @@ S = "${WORKDIR}/intltool-${PV}" inherit autotools libtool pkgconfig do_stage() { - install -m 0644 intltool.m4 ${STAGING_DIR}/share/aclocal/ + install -m 0644 intltool.m4 ${STAGING_DATADIR}/aclocal/ } |