summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-21 12:22:35 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-21 12:25:20 +0100
commit3034b144d0062e9c4394b901aded43fec117ed11 (patch)
treef1d6fba05c663986963830aaf1ec3d94e0e8785e /odk
parentfd95c8950c674ad0935f2583f8fb209d873a73b7 (diff)
OfficeBean example does not work on OS X (where officebean.jar is not built)
Change-Id: I18c9d0fa0a74cbbdad43bd99d87dc6414a0264d2
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/OfficeBean/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeBean/Makefile b/odk/examples/DevelopersGuide/OfficeBean/Makefile
index 3326244e60a4..2dfc678ee9e2 100644
--- a/odk/examples/DevelopersGuide/OfficeBean/Makefile
+++ b/odk/examples/DevelopersGuide/OfficeBean/Makefile
@@ -59,8 +59,13 @@ SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(URE
# Targets
.PHONY: ALL
+ifeq "$(OS)" "MACOSX"
+ALL :
+ @printf 'This example does not work on Mac OS X\n'
+else
ALL : \
OOoBeanViewer
+endif
include $(SETTINGS)/stdtarget.mk