Skip to content

Commit

Permalink
Fix "include ant runtime" error in build.xml. Fixed download file md …
Browse files Browse the repository at this point in the history
…path.
  • Loading branch information
Phil Goodwin & Tyler Schultz committed Nov 24, 2010
1 parent 8a7a3d2 commit 5010e89
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions build.xml
Expand Up @@ -77,7 +77,9 @@

<javac encoding="ascii" source="1.6" target="1.6" debug="true" extdirs=""
destdir="${out.main.absolute.dir}"
verbose="${verbose}" classpath="${extensible.classpath}">
verbose="${verbose}"
classpath="${extensible.classpath}"
includeantruntime="false">
<src path="${main.absolute.dir}"/>
<classpath>
<pathelement path="${out.main.absolute.dir}"/>
Expand Down Expand Up @@ -114,7 +116,9 @@

<javac encoding="ascii" source="1.6" target="1.6" debug="true" extdirs=""
destdir="${out.test.absolute.dir}"
verbose="${verbose}" classpath="${extensible.classpath}">
verbose="${verbose}"
classpath="${extensible.classpath}"
includeantruntime="false">
<src path="${test.absolute.dir}"/>
<classpath>
<pathelement path="${out.main.absolute.dir}"/>
Expand Down
2 changes: 1 addition & 1 deletion update-downloads.rb
@@ -1,6 +1,6 @@
#!/usr/bin/env ruby

DOWNLOADS_FILE = 'pages/download.html.md'
DOWNLOADS_FILE = 'pages/download.md'

def need_pages_submodule
unless File.exists?(DOWNLOADS_FILE)
Expand Down

0 comments on commit 5010e89

Please sign in to comment.