diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-27 06:16:16 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-27 06:16:16 +0000 |
commit | b283fd33840e1c0a9c543965d9351ab8f948db0d (patch) | |
tree | 627c622ba56c82cb6453d9f5b98c51944cd2c423 /evas | |
parent | db35a28a93492a16324c3963442b3cf7f566184b (diff) |
BUGFIX in evas builds, correct path used in oe_libinstall call.
BKrev: 40b587b01fawTrGsBQNDBNhc1NHuTA
Diffstat (limited to 'evas')
-rw-r--r-- | evas/evas_1.0.0-pre5.oe | 2 | ||||
-rw-r--r-- | evas/evas_cvs.oe | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/evas/evas_1.0.0-pre5.oe b/evas/evas_1.0.0-pre5.oe index ff940e78dc..19744f742d 100644 --- a/evas/evas_1.0.0-pre5.oe +++ b/evas/evas_1.0.0-pre5.oe @@ -44,7 +44,7 @@ do_stage () { for i in ${headers}; do install -m 0644 ${S}/src/lib/$i ${STAGING_INCDIR}/ done - oe_libinstall -C src libevas ${STAGING_LIBDIR}/ + oe_libinstall -C src/lib libevas ${STAGING_LIBDIR}/ cat evas-config | sed -e 's,/usr/include,${STAGING_INCDIR},g; \ s,/usr/lib,${STAGING_LIBDIR},g; \ s,/usr/bin,${STAGING_BINDIR},g; \ diff --git a/evas/evas_cvs.oe b/evas/evas_cvs.oe index 8e5f47649f..8e5f9c94e7 100644 --- a/evas/evas_cvs.oe +++ b/evas/evas_cvs.oe @@ -73,7 +73,7 @@ do_stage () { for i in ${headers}; do install -m 0644 ${S}/src/lib/$i ${STAGING_INCDIR}/ done - oe_libinstall -C src libevas ${STAGING_LIBDIR}/ + oe_libinstall -C src/lib libevas ${STAGING_LIBDIR}/ cat evas-config | sed -e 's,/usr/include,${STAGING_INCDIR},g; \ s,/usr/lib,${STAGING_LIBDIR},g; \ s,/usr/bin,${STAGING_BINDIR},g; \ |