You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2006/03/24 14:37:11 UTC

svn commit: r388522 - /webservices/axis/trunk/c/package.xml

Author: dicka
Date: Fri Mar 24 05:37:09 2006
New Revision: 388522

URL: http://svn.apache.org/viewcvs?rev=388522&view=rev
Log:
AXISCPP-955

Fix to packaging script to ensure Apache header files are not included within either the binary of source packages - if they've been incorporated in the Axis C++ source tree include structure.

Modified:
    webservices/axis/trunk/c/package.xml

Modified: webservices/axis/trunk/c/package.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/package.xml?rev=388522&r1=388521&r2=388522&view=diff
==============================================================================
--- webservices/axis/trunk/c/package.xml (original)
+++ webservices/axis/trunk/c/package.xml Fri Mar 24 05:37:09 2006
@@ -32,7 +32,7 @@
 	<target name="copySource">
 		<mkdir dir="${dir.release}"/>
 		<copy todir="${dir.release}">
-			<fileset dir="${basedir}" includes="**"/>
+			<fileset dir="${basedir}" includes="**" excludes="include/apache*/**"/>
 		</copy>
 	</target>
 
@@ -70,12 +70,12 @@
 		<!-- Copy include files into release package -->
 		<mkdir dir="${dir.release}/include"/>
 		<copy todir="${dir.release}/include">
-			<fileset dir="${basedir}/include" includes="**"/>
+			<fileset dir="${basedir}/include" includes="axis/**"/>
 		</copy>
 		<!-- copy over the c include files which have been generated. the failonerror is the easiest way to do this
 		otherwise I have to load in common.properties and that could end in tears ! -->
 		<copy todir="${dir.release}/include" failonerror="false">
-			<fileset dir="${dir.obj}/include" includes="**"/>
+			<fileset dir="${dir.obj}/include" includes="axis/**"/>
 		</copy>
 	</target>