You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2006/12/07 04:47:45 UTC

svn commit: r483336 - /incubator/tuscany/cpp/sca/build.sh

Author: jsdelfino
Date: Wed Dec  6 19:47:44 2006
New Revision: 483336

URL: http://svn.apache.org/viewvc?view=rev&rev=483336
Log:
Fixed the SCA build script to define and use TUSCANY_SCACPP, using TUSCANY_SCACPP_HOME before created an inconsistent build structure if TUSCANY_SCACPP was different from sca/deploy.

Modified:
    incubator/tuscany/cpp/sca/build.sh

Modified: incubator/tuscany/cpp/sca/build.sh
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/build.sh?view=diff&rev=483336&r1=483335&r2=483336
==============================================================================
--- incubator/tuscany/cpp/sca/build.sh (original)
+++ incubator/tuscany/cpp/sca/build.sh Wed Dec  6 19:47:44 2006
@@ -59,7 +59,11 @@
 cd $TUSCANY_SCACPP_HOME
 ./autogen.sh
 
-./configure --prefix=${TUSCANY_SCACPP_HOME}/deploy --enable-static=no ${WITH_AXIS2C} ${ENABLE_RUBY} ${ENABLE_PYTHON}
+if [ x$TUSCANY_SCACPP = x ]; then
+export TUSCANY_SCACPP=`pwd`/deploy
+fi
+
+./configure --prefix=${TUSCANY_SCACPP} --enable-static=no ${WITH_AXIS2C} ${ENABLE_RUBY} ${ENABLE_PYTHON}
 make
 make install
 



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org