You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by cu...@apache.org on 2010/09/03 01:02:13 UTC

svn commit: r992146 - in /avro/trunk: CHANGES.txt lang/py/build.xml

Author: cutting
Date: Thu Sep  2 23:02:12 2010
New Revision: 992146

URL: http://svn.apache.org/viewvc?rev=992146&view=rev
Log:
AVRO-653. Python: Fix so distribution contains correct files. Contributed by Eric Evans.

Modified:
    avro/trunk/CHANGES.txt
    avro/trunk/lang/py/build.xml

Modified: avro/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=992146&r1=992145&r2=992146&view=diff
==============================================================================
--- avro/trunk/CHANGES.txt (original)
+++ avro/trunk/CHANGES.txt Thu Sep  2 23:02:12 2010
@@ -227,6 +227,9 @@ Avro 1.4.0 (31 August 2010)
 
     AVRO-640. Python: Fix path to sources in RPC interop test.  (cutting)
 
+    AVRO-653. Python: Fix so distribution contains correct files.
+    (Eric Evans via cutting)
+
 Avro 1.3.3 (7 June 2010)
 
   IMPROVEMENTS

Modified: avro/trunk/lang/py/build.xml
URL: http://svn.apache.org/viewvc/avro/trunk/lang/py/build.xml?rev=992146&r1=992145&r2=992146&view=diff
==============================================================================
--- avro/trunk/lang/py/build.xml (original)
+++ avro/trunk/lang/py/build.xml Thu Sep  2 23:02:12 2010
@@ -149,7 +149,7 @@
           description="Build source distribution"
           depends="build">
     <mkdir dir="${dist.dir}"/>
-    <exec executable="${python}" failonerror="true">
+    <exec executable="${python}" failonerror="true" dir="${build.dir}">
       <arg value="${build.dir}/setup.py"/>
       <arg value="sdist"/>
       <arg value="--dist-dir=${dist.dir}"/>