cdv-pvr-driver: inhibit package stripping

The binaries are already stripped, so don't try stripping them again (which
results in a warning).

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
This commit is contained in:
Ross Burton 2012-10-26 13:58:17 +01:00 committed by Tom Zanussi
parent 43b2e9c343
commit 272d6a11a5

View File

@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = " \
DEPENDS = "rpm-native libva" DEPENDS = "rpm-native libva"
PR = "r4" PR = "r5"
PSB-VIDEO = "psb-video-cdv-1.0.3-1.1.i586.rpm" PSB-VIDEO = "psb-video-cdv-1.0.3-1.1.i586.rpm"
PSB-VIDEO-REV = "1.0.3" PSB-VIDEO-REV = "1.0.3"
@ -66,6 +66,9 @@ S = "${WORKDIR}/cdv-graphics-drivers_${PV}"
# These are closed binaries generated elsewhere so don't check ldflags # These are closed binaries generated elsewhere so don't check ldflags
INSANE_SKIP_${PN} = "ldflags" INSANE_SKIP_${PN} = "ldflags"
# Don't try stripping, as the binaries are already stripped
INHIBIT_PACKAGE_STRIP = "1"
# .so files in these binaries are not symlinks. Rearange package order # .so files in these binaries are not symlinks. Rearange package order
# so that they go to ${PN} instead of $PN}-dev # so that they go to ${PN} instead of $PN}-dev
PACKAGES = "${PN}-dbg ${PN}-staticdev ${PN} ${PN}-dev ${PN}-doc ${PN}-locale" PACKAGES = "${PN}-dbg ${PN}-staticdev ${PN} ${PN}-dev ${PN}-doc ${PN}-locale"