fix(app-emulation/google-startup-scripts): don't install boto

skip installing the boto scripts since we don't ship python or gsutil.
This commit is contained in:
Brandon Philips 2014-04-06 16:22:25 -07:00
parent 01054fb26c
commit b83fa9e55d

View File

@ -26,4 +26,6 @@ src_prepare() {
src_install() {
mkdir -p ${D}/usr/share/oem/google-startup-scripts/usr/share/google/
cp -Ra ${WORKDIR}/usr/share/google/. ${D}/usr/share/oem/google-startup-scripts/ || die
# We don't install python or gsutil so skip this
rm -R ${D}/usr/share/oem/google-startup-scripts/boto || die
}