diff options
author | Ross Burton <ross.burton@intel.com> | 2014-12-04 16:26:17 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-05 17:43:15 +0000 |
commit | 3a4b24549dcab06b7b840d04eeab9b660c2ed473 (patch) | |
tree | 687d616ebe0c0e8ae2c3c3ed0e32dd6df08ebdc8 | |
parent | fa249f347b3453537ee6aaea0d3bb75cfe7a75d1 (diff) | |
download | openembedded-core-3a4b24549dcab06b7b840d04eeab9b660c2ed473.tar.gz openembedded-core-3a4b24549dcab06b7b840d04eeab9b660c2ed473.tar.bz2 openembedded-core-3a4b24549dcab06b7b840d04eeab9b660c2ed473.zip |
bzip2: use subdir SRC_URI param instead of adding tasks
Instead of adding new tasks to move files around, just use the subdir SRC_URI
parameter.
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-extended/bzip2/bzip2_1.0.6.bb | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/meta/recipes-extended/bzip2/bzip2_1.0.6.bb b/meta/recipes-extended/bzip2/bzip2_1.0.6.bb index 9dd9e6a1f9..ed12277566 100644 --- a/meta/recipes-extended/bzip2/bzip2_1.0.6.bb +++ b/meta/recipes-extended/bzip2/bzip2_1.0.6.bb @@ -8,10 +8,10 @@ LICENSE = "bzip2" LIC_FILES_CHKSUM = "file://LICENSE;beginline=8;endline=37;md5=40d9d1eb05736d1bfc86cfdd9106e6b2" PR = "r5" -SRC_URI = "http://www.bzip.org/${PV}/${BPN}-${PV}.tar.gz \ - file://configure.ac \ - file://run-ptest \ - file://Makefile.am" +SRC_URI = "http://www.bzip.org/${PV}/${BP}.tar.gz \ + file://configure.ac;subdir=${BP} \ + file://Makefile.am;subdir=${BP} \ + file://run-ptest" SRC_URI[md5sum] = "00b516f4704d4a7cb50a1d97e6e8e15b" SRC_URI[sha256sum] = "a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd" @@ -27,12 +27,6 @@ ALTERNATIVE_${PN} = "bunzip2 bzcat" #install binaries to bzip2-native under sysroot for replacement-native EXTRA_OECONF_append_class-native = " --bindir=${STAGING_BINDIR_NATIVE}/${PN}" -do_extraunpack () { - cp ${WORKDIR}/configure.ac ${S}/ - cp ${WORKDIR}/Makefile.am ${S}/ -} - -addtask extraunpack after do_unpack before do_patch do_install_ptest () { cp -f ${B}/Makefile ${D}${PTEST_PATH}/Makefile |