Fixes for assembly specifier
diff --git a/README.txt b/README.txt
index 7675669..474f912 100644
--- a/README.txt
+++ b/README.txt
@@ -12,6 +12,10 @@
 
  $ mvn install deploy  -Papache-release -Prelease 
 
+To build a src tarball:
+
+ $ mvn clean assembly:single
+
 (Make sure you have your credentials set over in ~/.m2/settings.xml, etc. -- see
 hbase refguide for publishing SNAPSHOTS/Release Candidates)
 
diff --git a/src/main/assembly/src.xml b/src/main/assembly/src.xml
index b452238..ab2d7f4 100644
--- a/src/main/assembly/src.xml
+++ b/src/main/assembly/src.xml
@@ -56,13 +56,13 @@
   </moduleSets>
   <fileSets>
     <fileSet>
-      <directory>${project.basedir}/../src</directory>
+      <directory>${project.basedir}/src</directory>
       <outputDirectory>src</outputDirectory>
       <fileMode>0644</fileMode>
       <directoryMode>0755</directoryMode>
     </fileSet>
     <fileSet>
-      <directory>${project.basedir}/..</directory>
+      <directory>${project.basedir}</directory>
       <outputDirectory>.</outputDirectory>
       <includes>
         <include>pom.xml</include>