diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-10-29 22:28:25 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-10-30 00:01:33 +0100 |
commit | 542baebc307942d6aa53bd7a11652d689fc69216 (patch) | |
tree | 50920246132f2ae1e9e3fbdc6fab66a71bed143b /vcl | |
parent | 2cb380bad6e7c8abaf15a7606d8e95ca86d5c8e6 (diff) |
avoid build breakage on lame pseudo-OS that cannot unlink open file
Delivery of image theme zip can fail when a unit test runs concurrently
and has the zip file opened on WNT. Horrible hack to have vcl depend on
the image themes should prevent that.
Change-Id: I4b65dbb6cae8738d52153eba3397b17e94cdc7c9
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/Library_vcl.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk index c8008ae281e4..5dd3356a8b3a 100644 --- a/vcl/Library_vcl.mk +++ b/vcl/Library_vcl.mk @@ -675,4 +675,8 @@ endif # Runtime dependency for unit-tests $(eval $(call gb_Library_use_restarget,vcl,vcl)) +# HACK: dependency on icon themes so running unit tests don't +# prevent delivering these by having open file handles on WNT +$(eval $(call gb_Library_use_package,vcl,postprocess_images)) + # vim: set noet sw=4 ts=4: |