diff options
| author | Bryan Galdrikian <[email protected]> | 2018-05-31 11:36:08 -0700 |
|---|---|---|
| committer | Bryan Galdrikian <[email protected]> | 2018-05-31 11:36:08 -0700 |
| commit | 7115f60b91b5717d90f643fd692010905c7004db (patch) | |
| tree | effd68c6978751c517d54c2f2bb5bb6e7dc93e18 /generate_projects_linux.sh | |
| parent | Updating BlastTool zip (diff) | |
| download | blast-7115f60b91b5717d90f643fd692010905c7004db.tar.xz blast-7115f60b91b5717d90f643fd692010905c7004db.zip | |
Blast 1.1.3. See docs/release_notes.txt.v1.1.3_rc1
Diffstat (limited to 'generate_projects_linux.sh')
| -rwxr-xr-x | generate_projects_linux.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/generate_projects_linux.sh b/generate_projects_linux.sh index ba4344c..ebbc58d 100755 --- a/generate_projects_linux.sh +++ b/generate_projects_linux.sh @@ -1,11 +1,13 @@ -#!/bin/sh +x +#!/bin/bash +x # Set the blast root to the current directory SCRIPT=$(readlink -f "$0") export BLAST_ROOT_DIR=$(dirname $SCRIPT) echo $BLAST_ROOT_DIR -# Run packman to ensure dependencies are present and run cmake generation script afterwards -echo "Running packman in preparation for cmake ..." +# Run packman to ensure dependencies are present and run cmake generation script last +echo "Getting build platform dependencies for Linux ..." +source $BLAST_ROOT_DIR"/buildtools/packman5/packman" pull $BLAST_ROOT_DIR"/buildtools/build_platform_deps.xml" --platform linux -$BLAST_ROOT_DIR"/buildtools/packman/packman" pull $BLAST_ROOT_DIR"/dependencies.xml" --platform linux --postscript $BLAST_ROOT_DIR"/buildtools/cmake_projects_linux.sh" +echo "Getting target platform dependencies for Linux ..." +source $BLAST_ROOT_DIR"/buildtools/packman5/packman" pull $BLAST_ROOT_DIR"/target_platform_deps.xml" --platform linux --postscript $BLAST_ROOT_DIR"/buildtools/cmake_projects_linux.sh" |