Tag: cws_src680_vq30
User: vq      
Date: 06/04/17 08:20:05

Modified:
 /dba/connectivity/qa/connectivity/tools/
  makefile.mk

Log:
 #i64429# Fix W32-4nt build problem.

File Changes:

Directory: /dba/connectivity/qa/connectivity/tools/
===================================================

File [changed]: makefile.mk
Url: 
http://dba.openoffice.org/source/browse/dba/connectivity/qa/connectivity/tools/makefile.mk?r1=1.2&r2=1.2.42.1
Delta lines:  +5 -3
-------------------
--- makefile.mk 6 Feb 2006 16:43:34 -0000       1.2
+++ makefile.mk 17 Apr 2006 15:20:03 -0000      1.2.42.1
@@ -4,9 +4,9 @@
 #
 #   $RCSfile: makefile.mk,v $
 #
-#   $Revision: 1.2 $
+#   $Revision: 1.2.42.1 $
 #
-#   last change: $Author: rt $ $Date: 2006/02/06 16:43:34 $
+#   last change: $Author: vq $ $Date: 2006/04/17 15:20:03 $
 #
 #   The Contents of this file are made available subject to
 #   the terms of GNU Lesser General Public License Version 2.1.
@@ -45,7 +45,9 @@
 #----- compile .java files -----------------------------------------
 
 JARFILES        = ridl.jar unoil.jar jurt.jar juh.jar jut.jar java_uno.jar
-JAVAFILES       = $(shell $(FIND) .$/*.java)
+# Do not use $/ with the $(FIND) command as for W32-4nt this leads to a 
backslash
+# in a posix command. In this special case use / instead of $/
+JAVAFILES       = $(shell $(FIND) ./*.java)
 JAVACLASSFILES = $(foreach,i,$(JAVAFILES) 
$(CLASSDIR)$/$(PACKAGE)$/$(i:b).class)
 
 #----- make a jar from compiled files ------------------------------




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to