diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2012-05-03 11:12:34 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-17 10:54:04 +0100 |
commit | 22ea83c671cc4428558d771c2273c7110b4e870d (patch) | |
tree | 1a3a094f391a09bd8cc7256766264a8374898845 /meta/recipes-graphics | |
parent | 45d9171485d143f03c76fdc16d99d29a4b83f485 (diff) | |
download | poky-22ea83c671cc4428558d771c2273c7110b4e870d.tar.gz |
xf86-video-vmware: fix build with automake 1.12.x
automake 1.12.x automatically deletes empty directories, so
the additional rmdir from the do_install_append fails.
cleanup the do_install_append for automake 1.12.x
Fixes this build issue:
| rmdir: failed to remove
`/srv/home/nitin/builds/build-gcc47/tmp/work/i586-poky-linux/xf86-video-vmware-2_12.0.1-r17.1/image/usr/bin':
No such file or directory
NOTE: package xf86-video-vmware-2_12.0.1-r17.1: task do_install: Failed
No PR bump as no change in the output.
(From OE-Core rev: ae6cad80ea65b4e2ecbc15b94f66d874ee2400c7)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/xorg-driver/xf86-video-vmware_12.0.2.bb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-vmware_12.0.2.bb b/meta/recipes-graphics/xorg-driver/xf86-video-vmware_12.0.2.bb index 71f0339a4b..4468fae25a 100644 --- a/meta/recipes-graphics/xorg-driver/xf86-video-vmware_12.0.2.bb +++ b/meta/recipes-graphics/xorg-driver/xf86-video-vmware_12.0.2.bb | |||
@@ -15,8 +15,3 @@ SRC_URI[md5sum] = "0743ec7c479603fba60d118858fd5783" | |||
15 | SRC_URI[sha256sum] = "c827875fd94805ec9b925fe09aaa973e7e3f9096c7ef311d449c3f134ae75147" | 15 | SRC_URI[sha256sum] = "c827875fd94805ec9b925fe09aaa973e7e3f9096c7ef311d449c3f134ae75147" |
16 | 16 | ||
17 | COMPATIBLE_HOST = '(i.86.*-linux|x86_64.*-linux)' | 17 | COMPATIBLE_HOST = '(i.86.*-linux|x86_64.*-linux)' |
18 | |||
19 | do_install_append () { | ||
20 | # Remove useless empty directory | ||
21 | rmdir ${D}${bindir} | ||
22 | } | ||