Skip to content

Commit

Permalink
Fixing logic for going git submodule update for apex and zerosum too
Browse files Browse the repository at this point in the history
Former-commit-id: 0144dd27ef8b213bcabbfcc51dab0dde9dc85ce4
  • Loading branch information
khuck committed Nov 2, 2024
1 parent 51dea6b commit 3bacc34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -11624,7 +11624,7 @@ build_apex() {
exit 1;
fi
echo "NOTE: Building APEX"
if [ ! -d apex ] ; then
if [ ! -d apex ] || [ ! -f apex/CMakeLists.txt ] ; then
git submodule update --init --recursive apex
fi
apex_include_file=apex/apex.mk
Expand Down Expand Up @@ -11673,7 +11673,7 @@ build_zerosum() {
exit 1;
fi
echo "NOTE: Building ZeroSum"
if [ ! -d zerosum ] ; then
if [ ! -d zerosum ] || [ ! -f zerosum/CMakeLists.txt ] ; then
git submodule update --init --recursive zerosum
fi
zerosum_include_file=zerosum/zerosum.mk
Expand Down Expand Up @@ -11714,7 +11714,7 @@ build_perfstubs() {
exit 1;
fi
echo "NOTE: Building PerfStubs with Python3.12+ support"
if [ ! -d perfstubs ] ; then
if [ ! -d perfstubs ] || [ ! -f perfstubs/CMakeLists.txt ] ; then
git submodule update --init --recursive perfstubs
fi
perfstubs_include_file=perfstubs/perfstubs.mk
Expand Down

0 comments on commit 3bacc34

Please sign in to comment.