diff options
author | Rene Wagner <rw@handhelds.org> | 2004-08-17 15:30:35 +0000 |
---|---|---|
committer | Rene Wagner <rw@handhelds.org> | 2004-08-17 15:30:35 +0000 |
commit | ce61a077c787fc4add1c3c96d3c47275d7ccfae8 (patch) | |
tree | ecd6862b012b837da0907adf1085925e83320565 | |
parent | 17743075070ce5d488e9ef30831dc00e2a5449de (diff) |
gsl: make do_stage() use install rather than cp; install libs from correct source so that *.lai is found by oe_libinstall
BKrev: 4122249bamU-CRWNoa0keoznIC3XAQ
-rw-r--r-- | gsl/gsl_1.4.oe | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gsl/gsl_1.4.oe b/gsl/gsl_1.4.oe index f07052c13f..dbf37f8001 100644 --- a/gsl/gsl_1.4.oe +++ b/gsl/gsl_1.4.oe @@ -9,9 +9,11 @@ inherit autotools pkgconfig do_stage() { oe_runmake DESTDIR=${S}/.install install - oe_libinstall -so -C .install/usr/lib libgslcblas ${STAGING_LIBDIR} - oe_libinstall -so -C .install/usr/lib libgsl ${STAGING_LIBDIR} - cp -a .install/usr/include/* ${STAGING_INCDIR}/ + oe_libinstall -so -C cblas/.libs/ libgslcblas ${STAGING_LIBDIR} + oe_libinstall -so -C .libs/ libgsl ${STAGING_LIBDIR} + + install -d ${STAGING_INCDIR}/gsl + install -m 0644 .install/usr/include/gsl/* ${STAGING_INCDIR}/ cat gsl-config | sed -e "s,-I/usr/include,-I${STAGING_INCDIR} -I${STAGING_INCDIR}/python2.3," \ | sed -e "s,-L/usr/lib,-L${STAGING_LIBDIR}," > ${STAGING_BINDIR}/gsl-config |