Skip to content

Commit

Permalink
fix compile-native as per issue twitter#35
Browse files Browse the repository at this point in the history
  • Loading branch information
skiold committed Aug 15, 2012
1 parent cc0cdbd commit 44828ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.xml
Expand Up @@ -263,12 +263,12 @@
<mkdir dir="${build.native}/lib"/>
<mkdir dir="${build.native}/src/com/hadoop/compression/lzo"/>

<javah classpath="${build.classes}"
destdir="${build.native}/src/com/hadoop/compression/lzo"
<javah destdir="${build.native}/src/com/hadoop/compression/lzo"
force="yes"
verbose="yes">
<class name="com.hadoop.compression.lzo.LzoCompressor" />
<class name="com.hadoop.compression.lzo.LzoDecompressor" />
<classpath refid="classpath"/>
</javah>

<exec dir="${build.native}" executable="sh" failonerror="true">
Expand Down

0 comments on commit 44828ed

Please sign in to comment.