Skip to content

Commit

Permalink
build_ascent: limit windows patch to windows
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrush committed Jul 30, 2024
1 parent f241a7b commit 798079f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/build_ascent/build_ascent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,12 @@ if [ ! -d ${silo_src_dir} ]; then
# apply silo patches
cd ${silo_src_dir}
patch -p1 < ${script_dir}/2024_07_25_silo_4_11_cmake_fix.patch
patch -p1 < ${script_dir}/2024_07_29_silo-pr389-win32-bugfix.patch

# windows specifc patch
if [[ "$build_windows" == "ON" ]]; then
patch -p1 < ${script_dir}/2024_07_29_silo-pr389-win32-bugfix.patch
fi

cd ${root_dir}
fi

Expand Down

0 comments on commit 798079f

Please sign in to comment.