You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by fu...@apache.org on 2006/09/14 01:45:05 UTC

svn commit: r443169 - /db/derby/code/trunk/tools/jdbc4/update-with-jdbc4

Author: fuzzylogic
Date: Wed Sep 13 16:45:04 2006
New Revision: 443169

URL: http://svn.apache.org/viewvc?view=rev&rev=443169
Log:
DERBY-1846: Trim off the carriage return of each line of the list files.
The files need to be CRLF to be read properly on Windows.

Modified:
    db/derby/code/trunk/tools/jdbc4/update-with-jdbc4

Modified: db/derby/code/trunk/tools/jdbc4/update-with-jdbc4
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/tools/jdbc4/update-with-jdbc4?view=diff&rev=443169&r1=443168&r2=443169
==============================================================================
--- db/derby/code/trunk/tools/jdbc4/update-with-jdbc4 (original)
+++ db/derby/code/trunk/tools/jdbc4/update-with-jdbc4 Wed Sep 13 16:45:04 2006
@@ -70,7 +70,7 @@
 echo "Compiling the client classes for JDBC 4.0"
 for i in `cat client.list`
 do
-  FILE=`echo $i | tr '\\' '/'`
+  FILE=`echo $i | tr '\\' '/' | sed 's/.$//g'`
   CLASSES="$FILE $CLASSES"
 done
 
@@ -102,7 +102,7 @@
 unset CLASSES
 for i in `cat engine.list`
 do
-  FILE=`echo $i | tr '\\' '/'`
+  FILE=`echo $i | tr '\\' '/' | sed 's/.$//g'`
   CLASSES="$FILE $CLASSES"
 done