diff --git a/build.xml b/build.xml
index c7d9b6fc2..604a96857 100644
--- a/build.xml
+++ b/build.xml
@@ -1,7 +1,7 @@
 <project name="Lang" default="compile" basedir=".">
     <!--
         "Lang" component of the Jakarta Commons Subproject
-        $Id: build.xml,v 1.12 2003/05/31 18:44:36 ggregory Exp $
+        $Id: build.xml,v 1.13 2003/07/04 15:26:38 bayard Exp $
     -->
     <!-- ========== Initialize Properties ===================================== -->
     <property file="${user.home}/${component.name}.build.properties"/>
@@ -79,14 +79,14 @@
     </target>
     <target name="dist" depends="compile,javadoc" description="Create binary distribution">
         <mkdir dir="${dist.home}"/>
-        <copy file="../LICENSE" todir="${dist.home}"/>
+        <copy file="LICENSE.txt" todir="${dist.home}"/>
         <copy file="RELEASE-NOTES.txt" todir="${dist.home}"/>
         <antcall target="jar"/>
     </target>
     <target name="jar" depends="compile" description="Create jar">
         <mkdir dir="${dist.home}"/>
         <mkdir dir="${build.home}/classes/META-INF"/>
-        <copy file="../LICENSE" tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
+        <copy file="LICENSE.txt" tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
         <jar jarfile="${dist.home}/${final.name}.jar" basedir="${build.home}/classes" manifest="${build.home}/conf/MANIFEST.MF"/>
     </target>
     <target name="install-jar" depends="jar" description="--> Installs jar file in ${lib.repo}">