diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-09-20 01:01:09 +0300 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2016-03-04 11:17:55 +0100 |
commit | 8ba6e0d6b1471d56fd0733d5966bdc2e34cc0a05 (patch) | |
tree | d3bc14089dfa8e05b0dc2d546dd435f343a07541 /Repository.mk | |
parent | 02c0669017d4334e0746417178c8a8d9c6faa484 (diff) |
Skip some executables in the OS X sandboxed (Mac App Store) case
I doubt end-users will miss gengal.bin, regview, or regmerge.
We need the gengal program at build time. But don't bother shipping
it on OS X, at least not in the sandboxed (App Store) case.
Change-Id: Id73bef1ba71d126c2d2962fe846e9c31963d6c24
Diffstat (limited to 'Repository.mk')
-rw-r--r-- | Repository.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Repository.mk b/Repository.mk index df446f6f03e2..e9cd89a5f438 100644 --- a/Repository.mk +++ b/Repository.mk @@ -190,8 +190,10 @@ endif $(eval $(call gb_Helper_register_executables_for_install,UREBIN,ure,\ $(if $(and $(ENABLE_JAVA),$(filter-out MACOSX WNT,$(OS)),$(filter DESKTOP,$(BUILD_TYPE))),javaldx) \ - regmerge \ - regview \ + $(if $(ENABLE_MACOSX_SANDBOX),, \ + regmerge \ + regview \ + ) \ $(if $(filter DESKTOP,$(BUILD_TYPE)),uno) \ )) |