diff options
author | Philip Balister <philip@balister.org> | 2007-02-28 12:21:14 +0000 |
---|---|---|
committer | Philip Balister <philip@balister.org> | 2007-02-28 12:21:14 +0000 |
commit | 3b2777f0f7b7e53b5168eacdc46b8aa8db4ccf8f (patch) | |
tree | 4f347ade5474161c8c0997a8112c21e23dec61cb | |
parent | 9989adc8ed96621de704b377c67d1ad510c23bf7 (diff) |
usrp-0.12.bb : Fix QA problems with python packages.
Apply usb1.1 patch only for omap5912osk.
-rw-r--r-- | packages/usrp/usrp_0.12.bb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/usrp/usrp_0.12.bb b/packages/usrp/usrp_0.12.bb index ade37baf60..b47ea9b62e 100644 --- a/packages/usrp/usrp_0.12.bb +++ b/packages/usrp/usrp_0.12.bb @@ -7,10 +7,11 @@ RDEPENDS = "python-core" PR = "r0" SRC_URI = "ftp://ftp.gnu.org/gnu/gnuradio/usrp-${PV}.tar.gz \ - file://usb11.patch;patch=1 \ file://fix_compile_h.patch;patch=1;pnum=3 \ file://install_test.patch;patch=1" +SRC_URI_append_omap5912osk = "file://usb11.patch;patch=1" + S = "${WORKDIR}/usrp-${PV}" inherit autotools pkgconfig @@ -35,5 +36,6 @@ do_stage () { install -m 644 firmware/include/usrp_spi_defs.h ${STAGING_INCDIR} } -PACKAGES += "python-pyursp" -FILES_python-pyursp = "${libdir}/python*" +PACKAGES += "python-pyusrp-dbg python-pyusrp" +FILES_python-pyusrp-dbg = "${libdir}/python*/site-packages/.debug" +FILES_python-pyusrp = "${libdir}/python*" |