From 07976ee1de03ab558fd1fe6f921514c8250cee02 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 15 May 2013 13:30:11 +0300 Subject: Don't export a variable called PATH_SEPARATOR It used to be mis-spelled PATH_SEPERATOR. Now, after correcting the spelling, it breaks the build of 3rd-party libraries using autoconfigury on Windows. The value of PATH_SEPARATOR is ";" on Windows, and the configure scripts of those libs run in Cygwin and assume that a PATH_SEPARATOR environment variable should be correct for Cygwin. Which ";" isn't. Rename the variable to LIBO_PATH_SEPARATOR. Change-Id: Iff0eb93bf11d9f844a28be7ea4456e4c0ae10844 --- bean/test/makefile.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bean/test') diff --git a/bean/test/makefile.mk b/bean/test/makefile.mk index 1e3c4932d1f6..f48ab8fdc79b 100644 --- a/bean/test/makefile.mk +++ b/bean/test/makefile.mk @@ -33,8 +33,8 @@ JAVACLASSFILES = $(foreach,i,$(JAVAFILES) $(CLASSDIR)$/$(PACKAGE)$/$(i:b).class) MAXLINELENGTH = 100000 -OFFICE_CLASSPATH_TMP:=$(foreach,i,$(JARFILES) $(office)$/program$/classes$/$(i)$(PATH_SEPARATOR)) -OFFICE_CLASSPATH=$(OFFICE_CLASSPATH_TMP:t"")$(PATH_SEPARATOR)$(CLASSDIR) +OFFICE_CLASSPATH_TMP:=$(foreach,i,$(JARFILES) $(office)$/program$/classes$/$(i)$(LIBO_PATH_SEPARATOR)) +OFFICE_CLASSPATH=$(OFFICE_CLASSPATH_TMP:t"")$(LIBO_PATH_SEPARATOR)$(CLASSDIR) OOOBEAN_OPTIONS=-Dcom.sun.star.officebean.Options=--norestore -- cgit v1.2.3