diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-03-21 12:12:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-21 15:33:05 +0000 |
commit | 27139083debbad2e24a197a30c5cfda714a64c98 (patch) | |
tree | d09ff2745eee9833bc4d8f1a9cc1b417bf5169c4 /meta | |
parent | ddfbae197ce0469fc0f82d371289bf5519982a18 (diff) | |
download | poky-27139083debbad2e24a197a30c5cfda714a64c98.tar.gz |
hdparm: fix stripped file warning
Fix the following package warning:
WARNING: File '/sbin/hdparm.hdparm' from hdparm was already stripped, this will prevent future debugging!
(From OE-Core rev: d2625ddfdee752ed790aa6b9a8b8ceade8358093)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/hdparm/hdparm_9.39.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-extended/hdparm/hdparm_9.39.bb b/meta/recipes-extended/hdparm/hdparm_9.39.bb index d8342ccd4f..ed076cc29e 100644 --- a/meta/recipes-extended/hdparm/hdparm_9.39.bb +++ b/meta/recipes-extended/hdparm/hdparm_9.39.bb | |||
@@ -8,6 +8,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.TXT;md5=910a8a42c962d238619c75fdb78bdb24 \ | |||
8 | file://wiper/GPLv2.txt;md5=fcb02dc552a041dee27e4b85c7396067 \ | 8 | file://wiper/GPLv2.txt;md5=fcb02dc552a041dee27e4b85c7396067 \ |
9 | file://wiper/wiper.sh;beginline=7;endline=31;md5=b7bc642addc152ea307505bf1a296f09" | 9 | file://wiper/wiper.sh;beginline=7;endline=31;md5=b7bc642addc152ea307505bf1a296f09" |
10 | 10 | ||
11 | PR = "r1" | ||
12 | |||
11 | PACKAGES += "wiper" | 13 | PACKAGES += "wiper" |
12 | 14 | ||
13 | FILES_wiper = "${bindir}/wiper.sh" | 15 | FILES_wiper = "${bindir}/wiper.sh" |
@@ -20,6 +22,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/hdparm/hdparm-${PV}.tar.gz " | |||
20 | SRC_URI[md5sum] = "2bc17b72403885d4faf959682944243b" | 22 | SRC_URI[md5sum] = "2bc17b72403885d4faf959682944243b" |
21 | SRC_URI[sha256sum] = "72d550af4526aa96f0841c79321a0ee39d636cbaf1f294e52193e90c054b3cea" | 23 | SRC_URI[sha256sum] = "72d550af4526aa96f0841c79321a0ee39d636cbaf1f294e52193e90c054b3cea" |
22 | 24 | ||
25 | EXTRA_OEMAKE += 'STRIP="echo"' | ||
26 | |||
23 | do_install () { | 27 | do_install () { |
24 | install -d ${D}/${base_sbindir} ${D}/${mandir}/man8 ${D}/${bindir} | 28 | install -d ${D}/${base_sbindir} ${D}/${mandir}/man8 ${D}/${bindir} |
25 | oe_runmake 'DESTDIR=${D}' 'sbindir=${base_sbindir}' install | 29 | oe_runmake 'DESTDIR=${D}' 'sbindir=${base_sbindir}' install |