You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ch...@apache.org on 2013/04/09 18:27:42 UTC

svn commit: r1466104 - in /pig/branches/branch-0.11: CHANGES.txt contrib/piggybank/java/build.xml

Author: cheolsoo
Date: Tue Apr  9 16:27:42 2013
New Revision: 1466104

URL: http://svn.apache.org/r1466104
Log:
PIG-3262: Pig contrib 0.11 doesn't compile on certain rpm systems (mgrover via cheolsoo)

Modified:
    pig/branches/branch-0.11/CHANGES.txt
    pig/branches/branch-0.11/contrib/piggybank/java/build.xml

Modified: pig/branches/branch-0.11/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.11/CHANGES.txt?rev=1466104&r1=1466103&r2=1466104&view=diff
==============================================================================
--- pig/branches/branch-0.11/CHANGES.txt (original)
+++ pig/branches/branch-0.11/CHANGES.txt Tue Apr  9 16:27:42 2013
@@ -30,6 +30,8 @@ PIG-2769: a simple logic causes very lon
 
 BUG FIXES
 
+PIG-3262: Pig contrib 0.11 doesn't compile on certain rpm systems (mgrover via cheolsoo)
+
 PIG-3264: mvn signanddeploy target broken for pigunit, pigsmoke and piggybank (billgraham)
 
 

Modified: pig/branches/branch-0.11/contrib/piggybank/java/build.xml
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.11/contrib/piggybank/java/build.xml?rev=1466104&r1=1466103&r2=1466104&view=diff
==============================================================================
--- pig/branches/branch-0.11/contrib/piggybank/java/build.xml (original)
+++ pig/branches/branch-0.11/contrib/piggybank/java/build.xml Tue Apr  9 16:27:42 2013
@@ -26,6 +26,7 @@
     <property name="javac.args" value="" />
     <!-- TODO we should use warning...   <property name="javac.args.warnings" value="-Xlint:unchecked" /> -->
     <property name="javac.args.warnings" value="" />
+    <property name="build.encoding" value="UTF8" />
 
     <!-- build properties -->
     <property name="build.dir" value="${basedir}/build" />
@@ -90,7 +91,7 @@
     <target depends="init" name="compile" description="compile all of the class files">
         <echo> *** Compiling Pig UDFs ***</echo>
         <javac srcdir="${src.dir}" debug="${javac.debug}" debuglevel="${javac.level}" destdir="${build.classes}" source="${javac.version}"
-        target="${javac.version}" optimize="${javac.optimize}" deprecation="${javac.deprecation}" excludes="${build.classes.excludes}">
+        target="${javac.version}" optimize="${javac.optimize}" deprecation="${javac.deprecation}" excludes="${build.classes.excludes}" encoding="${build.encoding}">
             <compilerarg line="${javac.args} ${javac.args.warnings}" />
             <classpath refid="pigudf.classpath"/>
         </javac>