--- Begin Message ---
------------------------------------------------------------
revno: 429
committer: Harish Narayanan <hnarayanan@xxxxxxxxx>
branch nick: dorsal
timestamp: Mon 2010-08-23 09:16:51 +0530
message:
Took care of aggravating python crashing bug on mac os x introduced by moronic cmake
modified:
FEniCS/platforms/supported/snowleopard.platform
dorsal.sh
--
lp:dorsal
https://code.launchpad.net/~dorsal-core/dorsal/main
You are subscribed to branch lp:dorsal.
To unsubscribe from this branch go to https://code.launchpad.net/~dorsal-core/dorsal/main/+edit-subscription
=== modified file 'FEniCS/platforms/supported/snowleopard.platform'
--- FEniCS/platforms/supported/snowleopard.platform 2010-08-22 07:46:01 +0000
+++ FEniCS/platforms/supported/snowleopard.platform 2010-08-23 03:46:51 +0000
@@ -33,21 +33,21 @@
# Define the packages this platform needs
PACKAGES=(
-parmetis
-petsc
-slepc
-armadillo
+skip:parmetis
+skip:petsc
+skip:slepc
+skip:armadillo
# swiginac
-mtl
+skip:mtl
# trilinos
-scotch
-fiat
-ferari
-ufc
-ufl
-ffc
+skip:scotch
+skip:fiat
+skip:ferari
+skip:ufc
+skip:ufl
+skip:ffc
# syfi
-viper
-instant
+skip:viper
+skip:instant
dolfin
)
=== modified file 'dorsal.sh'
--- dorsal.sh 2010-08-21 16:26:53 +0000
+++ dorsal.sh 2010-08-23 03:46:51 +0000
@@ -206,7 +206,7 @@
BUILD_DIR="./dorsal_build_dir"
echo mkdir -p ${BUILD_DIR} >>dorsal_build
echo cd ${BUILD_DIR} >>dorsal_build
- echo cmake ../ -DCMAKE_INSTALL_PREFIX=${INSTALL_PATH} >>dorsal_build
+ echo echo python `which cmake` ../ -DCMAKE_INSTALL_PREFIX=${INSTALL_PATH} >>dorsal_build
echo make install -j ${PROCS} >>dorsal_build
elif [ ${BUILDCHAIN} = "custom" ]
then
--- End Message ---