From 3034b144d0062e9c4394b901aded43fec117ed11 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 21 Jan 2014 12:22:35 +0100 Subject: OfficeBean example does not work on OS X (where officebean.jar is not built) Change-Id: I18c9d0fa0a74cbbdad43bd99d87dc6414a0264d2 --- odk/examples/DevelopersGuide/OfficeBean/Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'odk') 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 -- cgit