You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by ka...@apache.org on 2007/09/24 07:59:09 UTC

svn commit: r578667 - /webservices/rampart/trunk/c/rampart-bindist.sh

Author: kaushalye
Date: Sun Sep 23 22:59:08 2007
New Revision: 578667

URL: http://svn.apache.org/viewvc?rev=578667&view=rev
Log:
Modified the script to create binary distribution, to include API docs as well 

Modified:
    webservices/rampart/trunk/c/rampart-bindist.sh

Modified: webservices/rampart/trunk/c/rampart-bindist.sh
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/rampart-bindist.sh?rev=578667&r1=578666&r2=578667&view=diff
==============================================================================
--- webservices/rampart/trunk/c/rampart-bindist.sh (original)
+++ webservices/rampart/trunk/c/rampart-bindist.sh Sun Sep 23 22:59:08 2007
@@ -61,6 +61,12 @@
 echo "Copy headers"
 cp include/*.h $BIN_DIR/include/$INCL_V_DIR
 
+echo "Copy docs"
+cp -r target/docs $BIN_DIR/
+
+echo "Copy API"
+cp -rf xdocs/api $BIN_DIR/docs
+
 echo "Removing garbage in $BIN_DIR"
 cd $BIN_DIR
 
@@ -80,4 +86,4 @@
 echo "To sign please enter password for the private key"
 gpg --armor --output $TAR_GZ.asc --detach-sig $TAR_GZ
 
-echo "DONE" 
+echo "Binary DONE"