diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-01-16 21:43:34 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-01-16 23:38:41 +0200 |
commit | cbc0ad34d8d6f05800609979bb51cad087b79a10 (patch) | |
tree | be88a94db674fa4d0aff242f77b1119c30064312 /vcl | |
parent | 38b4030703e83c0a8e239ccd05a99d1f904b1acf (diff) |
If this is Windows specific, it can be inside ifeq ($(OS),WNT)
This also prevents a weird problem I see when cross-compiling in one tree (but
not in other trees for other cross-compilation targets).
Change-Id: I102e652c259a66ea124b344bd229e8988801ac58
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/Library_vcl.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk index 9660161d96da..cbbae6a87609 100644 --- a/vcl/Library_vcl.mk +++ b/vcl/Library_vcl.mk @@ -661,8 +661,10 @@ endif # Runtime dependency for unit-tests $(eval $(call gb_Library_use_restarget,vcl,vcl)) +ifeq ($(OS),WNT) # 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)) +endif # vim: set noet sw=4 ts=4: |