diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-08-16 11:06:51 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-08-18 21:11:16 +0300 |
commit | 18041138d3169d565755565bdbabd8de596b5ac7 (patch) | |
tree | f7300a34c764d74f77d000797039ead30b92be6c /Makefile.in | |
parent | 667a0ad6513425a93cf1354217b411df5ffc7861 (diff) |
make install or install-strip hardly make sense on OS X
Change-Id: Ib21607e3fef7c2a52c443d6d16c5466e0a2d4340
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 3793b98b09b4..260b974e9843 100644 --- a/Makefile.in +++ b/Makefile.in @@ -240,6 +240,8 @@ build-nocheck: bootstrap fetch $(if $(filter $(INPATH),$(INPATH_FOR_BUILD)),,cro cross-toolset: bootstrap fetch $(GNUMAKE) gb_Side=build -j $(PARALLELISM) $(GMAKE_OPTIONS) -f $(SRCDIR)/Makefile.gbuild build-tools +ifneq ($(OS),MACOSX) + # # Install # @@ -258,6 +260,8 @@ install-strip: echo "Installation finished, you can now execute:" && \ echo "$(INSTALLDIR)/program/soffice" +endif # !MACOSX + ifeq ($(ENABLE_MACOSX_SANDBOX),YES) entitlements:=--entitlements $(BUILDDIR)/lo.xcent endif |