Skip to content

Commit

Permalink
Ensure all libraries built
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Bruce committed May 21, 2024
1 parent 8f0b6ed commit 8346fa8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/build-wrapper-liboqs-openssl-static.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ esac
[ $os_is_macos -eq 0 -a $os_is_linux -eq 0 -a $os_is_windows -eq 0 ] && echo 'CANNOT IDENTIFY OS' && exit 1

# determine our preferred targets
wants_android=0 ; #[ $os_is_macos -eq 1 ] && wants_android=1
wants_apple=0 ; #[ $os_is_macos -eq 1 ] && wants_apple=1
wants_android=0 ; [ $os_is_macos -eq 1 ] && wants_android=1
wants_apple=0 ; [ $os_is_macos -eq 1 ] && wants_apple=1
wants_linux=0 ; [ $os_is_linux -eq 1 ] && wants_linux=1
wants_windows=0 ; #[ $os_is_windows -eq 1 ] && wants_windows=1
wants_windows=0 ; [ $os_is_windows -eq 1 ] && wants_windows=1

# set the liboqs directory if unset
[ x"$the_liboqs_dir" = x ] && the_liboqs_dir="`realpath "$the_top_dir"/../liboqs`"
Expand Down

0 comments on commit 8346fa8

Please sign in to comment.