summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@novell.com>2011-03-22 10:06:40 +0000
committerMichael Meeks <michael.meeks@novell.com>2011-03-22 10:07:30 +0000
commit151e325d9adc2e073835665bf2b3c004444b0726 (patch)
treeb4fab45897ec5d9df657ec2da08a1d884b5a35bf /desktop
parentde3b51b0a627285744f179681175a6a6a9c8c19b (diff)
disable pagein and oosplash.bin compile/install for Mac
Diffstat (limited to 'desktop')
-rwxr-xr-xdesktop/source/pagein/makefile.mk9
-rwxr-xr-xdesktop/unx/splash/makefile.mk7
2 files changed, 16 insertions, 0 deletions
diff --git a/desktop/source/pagein/makefile.mk b/desktop/source/pagein/makefile.mk
index 205e03c958..2b02a4d5a4 100755
--- a/desktop/source/pagein/makefile.mk
+++ b/desktop/source/pagein/makefile.mk
@@ -41,6 +41,13 @@ LIBSALCPPRT=$(0)
.INCLUDE .IGNORE : icuversion.mk
+.IF "$(OS)"=="MACOSX"
+
+dummy:
+ @echo "Pagein disabled for mac"
+
+.ELSE
+
# --- Files --------------------------------------------------------
OBJFILES= \
@@ -185,3 +192,5 @@ $(MISC)$/$(TARGET)-common : makefile.mk
# stoc bits
@-echo $(DLLPRE)sfx$(DFTDLLPOST) >> $@
@-echo $(DLLPRE)sofficeapp$(DLLPOST) >> $@
+
+.ENDIF \ No newline at end of file
diff --git a/desktop/unx/splash/makefile.mk b/desktop/unx/splash/makefile.mk
index 23a9d98ae5..e338cfe36b 100755
--- a/desktop/unx/splash/makefile.mk
+++ b/desktop/unx/splash/makefile.mk
@@ -36,6 +36,11 @@ ENABLE_EXCEPTIONS=TRUE
.INCLUDE : settings.mk
+.IF "$(OS)"=="MACOSX"
+dummy:
+ @echo "Unix quickstarter disabled for mac"
+.ELSE
+
# --- Files --------------------------------------------------------
SLOFILES = $(SLO)$/unxsplash.obj
@@ -67,3 +72,5 @@ $(MISC)/splash.component .ERRREMOVE : $(SOLARENV)/bin/createcomponent.xslt \
$(XSLTPROC) --nonet --stringparam uri \
'$(COMPONENTPREFIX_BASIS_NATIVE)$(SHL1TARGETN:f)' -o $@ \
$(SOLARENV)/bin/createcomponent.xslt splash.component
+
+.ENDIF \ No newline at end of file