diff options
author | Ross Burton <ross.burton@intel.com> | 2014-12-04 14:20:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-31 10:19:00 +0000 |
commit | 6a2ff9b067c650eef4169dd7a9faef940fd6866a (patch) | |
tree | 1b256f833ecb2cd15487306fe21b84084abfcf85 /meta/recipes-extended/cwautomacros | |
parent | b48b07f1fb277477509c81a22423c07d195eea9e (diff) | |
download | poky-6a2ff9b067c650eef4169dd7a9faef940fd6866a.tar.gz |
cwautomacros: stub do_configure to avoid cleaning
cwuatomacros's build system doesn't have a clean target, so stub out
do_configure to a no-op.
(From OE-Core rev: c52f380b1df716517a585075f59546d559cc1ebb)
(From OE-Core rev: ef41e1f6b53db827a0d83f6b7620efc046d8cf5a)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/cwautomacros')
-rw-r--r-- | meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb b/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb index ee4b8900bb..4e12169302 100644 --- a/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb +++ b/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb | |||
@@ -5,11 +5,13 @@ LICENSE = "GPLv2" | |||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=eb723b61539feef013de476e68b5c50a" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=eb723b61539feef013de476e68b5c50a" |
6 | 6 | ||
7 | SRC_URI = "http://download.berlios.de/cwautomacros/cwautomacros-${PV}.tar.bz2" | 7 | SRC_URI = "http://download.berlios.de/cwautomacros/cwautomacros-${PV}.tar.bz2" |
8 | |||
9 | |||
10 | SRC_URI[md5sum] = "074afcb50d0a8bff10786a2954b2b02d" | 8 | SRC_URI[md5sum] = "074afcb50d0a8bff10786a2954b2b02d" |
11 | SRC_URI[sha256sum] = "3115603b891f3a163c0bbb5fea2f3742113a183fa6745ee5e89e5f6d0e9f6121" | 9 | SRC_URI[sha256sum] = "3115603b891f3a163c0bbb5fea2f3742113a183fa6745ee5e89e5f6d0e9f6121" |
12 | 10 | ||
11 | do_configure() { | ||
12 | : | ||
13 | } | ||
14 | |||
13 | do_install() { | 15 | do_install() { |
14 | oe_runmake CWAUTOMACROSPREFIX=${D}${prefix} install | 16 | oe_runmake CWAUTOMACROSPREFIX=${D}${prefix} install |
15 | } | 17 | } |