From fa657fdabf302f619ed532b24c0e7e57948cfc7b Mon Sep 17 00:00:00 2001 From: legrand Date: Thu, 27 Sep 2007 11:51:50 +0000 Subject: [PATCH] EO: autotools-->CMake git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@618 331e1502-861f-0410-8da2-ba01fb791d7f --- trunk/installParadiseo.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/trunk/installParadiseo.sh b/trunk/installParadiseo.sh index dd6b46d8e..5b005f20e 100755 --- a/trunk/installParadiseo.sh +++ b/trunk/installParadiseo.sh @@ -379,16 +379,14 @@ function run_install_step() echo -e " \033[40m\033[1;34m# STEP $currentStepCounter \033[0m " echo ' --> Installing Paradiseo-EO. Please wait ...' - execute_cmd "mkdir $installKitPath/build" "[$currentStepCounter-1] Create build directory" $SPY - RETURN=`expr $RETURN + $?` - execute_cmd "cd $installKitPath/build" "[$currentStepCounter-2] Go in Paradiseo-EO build dir" $SPY + execute_cmd "mkdir $installKitPath/paradiseo-eo/build" "[$currentStepCounter-1] Create build directory" $SPY + + execute_cmd "cd $installKitPath/paradiseo-eo/build" "[$currentStepCounter-2] Go in Paradiseo-EO build dir" $SPY RETURN=`expr $RETURN + $?` execute_cmd "cmake ../ " "[$currentStepCounter-3] Run CMake" $SPY RETURN=`expr $RETURN + $?` execute_cmd "make" "[$currentStepCounter-4] Compile ParadisEO-EO" $SPY RETURN=`expr $RETURN + $?` - execute_cmd "make install" "[$currentStepCounter-5] Make install of ParadisEO-EO" $SPY - RETURN=`expr $RETURN + $?` if [ ! $(($RETURN)) = 0 ] then