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/22 16:30:29 UTC

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

Author: dicka
Date: Wed Mar 22 07:30:01 2006
New Revision: 387875

URL: http://svn.apache.org/viewcvs?rev=387875&view=rev
Log:
Fix for AXISCPP-950

AdminClient and SimpleAxisServer executables don't have execute permission.

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=387875&r1=387874&r2=387875&view=diff
==============================================================================
--- webservices/axis/trunk/c/package.xml (original)
+++ webservices/axis/trunk/c/package.xml Wed Mar 22 07:30:01 2006
@@ -194,7 +194,8 @@
 				<mkdir dir="${dir.release}/bin"/>
 				<copy todir="${dir.release}/bin">
 					<fileset dir="${dir.bin}" includes="${simpleAxisServerExecutableName}"/>
-				</copy>				
+				</copy>
+			    <chmod perm="ugo+x" file="${dir.release}/bin/${simpleAxisServerExecutableName}"/>
 			</then>
 		</if>
         <if>
@@ -204,6 +205,7 @@
                 <copy todir="${dir.release}/bin">
                     <fileset dir="${dir.bin}" includes="${adminClientExecutableName}${executableSuffix}"/>
                 </copy>
+                <chmod perm="ugo+x" file="${dir.release}/bin/${adminClientExecutableName}${executableSuffix}"/>
             </then>
         </if>
 	</target>