diff options
author | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2010-11-17 11:34:03 +0000 |
---|---|---|
committer | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2010-11-17 11:34:03 +0000 |
commit | 1792213e9888e1c47bbb04b0ac92b52345413b5b (patch) | |
tree | 6319a04ac5682208b4cb9a7e93e29e62c08dec75 /build | |
parent | b291d678a6f1b9e5a312f7128e21e9b2099005a1 (diff) | |
download | vaadin-framework-1792213e9888e1c47bbb04b0ac92b52345413b5b.tar.gz vaadin-framework-1792213e9888e1c47bbb04b0ac92b52345413b5b.zip |
Moved copying of XEP license file from the vaadin build script to the documentation build script
svn changeset:16023/svn branch:6.5
Diffstat (limited to 'build')
-rw-r--r-- | build/build.xml | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/build/build.xml b/build/build.xml index fe9d024792..59e9995e8e 100644 --- a/build/build.xml +++ b/build/build.xml @@ -874,15 +874,6 @@ <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <target name="manual-init" depends="init"> - <!-- Can run XEP only if license is available. --> - <available file="build/lib/XEP/license.xml" property="xep.license.available" /> - - <!-- Path to installed XEP license. --> - <property name="xep.license.path.installed" value="/opt/RenderX/XEP/license.xml"/> - <echo>XEP license expected to be installed as ${xep.license.path.installed}</echo> - - <!-- Can copy XEP license only if it is available. --> - <available file="${xep.license.path.installed}" property="xep.license.installed"/> </target> <!-- Checkout doc repository. --> @@ -906,13 +897,8 @@ <echo>Manual checked out from repository successfully</echo> </target> - <!-- If the XEP is installed, copy it to proper place. --> - <target name="xep-license-copy" if="xep.license.installed"> - <copy file="${xep.license.path.installed}" todir="${docdir}/build/lib/XEP"/> - </target> - <!-- Build manual. --> - <target name="manual-build" depends="manual-init, xep-license-copy"> + <target name="manual-build" depends="manual-init"> <!-- The HTML and Eclipse Manual must be built with separate runs --> <ant dir="${docdir}" antfile="build/build.xml" inheritAll="false"> <property name="version" value="${version.full}"/> |