View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0001199 | ThirdParty | Bug | public | 2014-02-28 08:48 | 2014-02-28 16:54 |
Reporter | Assigned To | will | |||
Priority | normal | Severity | block | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Platform | Linux x86_64 | OS | RHEL | OS Version | 6.3 |
Summary | 0001199: CGAL does not build if metis src exists in $WM_THIRD_PARTY_DIR | ||||
Description | Assuming the metis source directory is present in $WM_THIRD_PARTY_DIR. Allwmake happily builds metis automatically but then it does not cd back to $WM_THIRD_PARTY_DIR. As a result, maleCGAL fails. | ||||
Steps To Reproduce | Assuming the metis source directory is present in $WM_THIRD_PARTY_DIR. Allwmake builds metis automatically but then it does not cd back to $WM_THIRD_PARTY_DIR. It stays in $METIS_VERSION. As a result, maleCGAL fails. The problem is solved by changing to $WM_THIRD_PARTY_DIR right after metis build is completed: echo =============================== echo Build CGAL cd $WM_THIRD_PARTY_DIR if [ -n "$CGAL_ARCH_PATH" ] then ... ... ... | ||||
Tags | No tags attached. | ||||
2014-02-28 10:17
|
Allwmake.patch (274 bytes)
--- Allwmake 2014-02-28 11:15:34.802185767 +0100 +++ Allwmake.corrected 2014-02-28 11:14:43.685268897 +0100 @@ -339,6 +339,7 @@ # CGAL is optional echo ======================================== echo Build CGAL +cd $WM_THIRD_PARTY_DIR if [ -n "$CGAL_ARCH_PATH" ] then ( |
|
Thanks for the report Fixed in commit 00c46800bac48d1b0e03e0e48a1890be3c6a8b64 of the repository at https://github.com/OpenFOAM/ThirdParty-2.3.x |