diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-11-05 08:53:07 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-11-05 08:53:07 +0000 |
commit | d3f519e01c2587f2a4ac2f319df968dbf2199e17 (patch) | |
tree | 751e3720cf16066dd14103ddfd7165b63ece0f7b | |
parent | 0fe35d10acff08c0c57e213773aba7c4e63c2377 (diff) |
#i82951# Patch by sb / pjanik to make syntax conform with pack process.
-rw-r--r-- | testtools/source/bridgetest/makefile.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testtools/source/bridgetest/makefile.mk b/testtools/source/bridgetest/makefile.mk index d3928a23963d..8e5d077eeca9 100644 --- a/testtools/source/bridgetest/makefile.mk +++ b/testtools/source/bridgetest/makefile.mk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.30 $ +# $Revision: 1.31 $ # -# last change: $Author: hr $ $Date: 2007-11-02 12:23:01 $ +# last change: $Author: rt $ $Date: 2007-11-05 09:53:07 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -49,12 +49,12 @@ DLLPRE = # no leading "lib" on .so files BATCH_SUFFIX=.bat GIVE_EXEC_RIGHTS=@echo MY_URE_INTERNAL_JAVA_DIR=$(strip $(subst,\,/ file:///$(shell $(WRAPCMD) echo $(SOLARBINDIR)))) -MY_LOCAL_CLASSDIR=$(subst,\,/ file:///$(PWD)$/$(CLASSDIR)) +MY_LOCAL_CLASSDIR=$(strip $(subst,\,/ file:///$(shell $(WRAPCMD) echo $(PWD)$/$(CLASSDIR)))) .ELIF "$(GUI)"=="OS2" BATCH_SUFFIX=.cmd GIVE_EXEC_RIGHTS=@echo MY_URE_INTERNAL_JAVA_DIR=$(strip $(subst,\,/ file:///$(shell $(WRAPCMD) echo $(SOLARBINDIR)))) -MY_LOCAL_CLASSDIR=$(subst,\,/ file:///$(PWD)$/$(CLASSDIR)) +MY_LOCAL_CLASSDIR=$(strip $(subst,\,/ file:///$(shell $(WRAPCMD) echo $(PWD)$/$(CLASSDIR)))) .ELSE BATCH_INPROCESS=bridgetest_inprocess GIVE_EXEC_RIGHTS=chmod +x |