tmiller     02/01/18 10:16:28

  Modified:    java     build.sh
  Log:
  fixed the xml apis variable XML-APIS_JAR that was not expanding properly
  
  Revision  Changes    Path
  1.8       +3 -3      xml-xalan/java/build.sh
  
  Index: build.sh
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/build.sh,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.sh  18 Jan 2002 15:26:13 -0000      1.7
  +++ build.sh  18 Jan 2002 18:16:28 -0000      1.8
  @@ -24,8 +24,8 @@
       PARSER_JAR=./bin/xercesImpl.jar
   fi
   
  -if [ "$XML-APIS_JAR" = "" ] ; then
  -    XML-APIS_JAR=./bin/xml-apis.jar
  +if [ "$XML_APIS_JAR" = "" ] ; then
  +    XML_APIS_JAR=./bin/xml-apis.jar
   fi
   
   # Use _underscore prefix to not conflict with user's settings
  @@ -33,7 +33,7 @@
   CLPATHSEP=:
   # if we're on a Windows box make it ;
   uname | grep WIN && CLPATHSEP=\;
  
-_CLASSPATH="$ANT_JAR${CLPATHSEP}$XML-APIS_JAR${CLPATHSEP}$PARSER_JAR${CLPATHSEP}$CLASSPATH"
  
+_CLASSPATH="$ANT_JAR${CLPATHSEP}$XML_APIS_JAR${CLPATHSEP}$PARSER_JAR${CLPATHSEP}$CLASSPATH"
   
   # Attempt to automatically add system classes to _CLASSPATH
   if [ -f $JAVA_HOME/lib/tools.jar ] ; then
  
  
  

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

Reply via email to