Skip to content

Commit

Permalink
docs(linking_flags.sh): Fix details
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmd committed Jul 28, 2021
1 parent a251678 commit c8ffe1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/linking_flags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ esac

shift
case "$1" in
macosx) shift; EXTRA_LIBS="curses $*";;
macosx) shift; EXTRA_LIBS="$* curses";;
linux) shift; EXTRA_LIBS="$*";;
--) shift; EXTRA_LIBS="$*";;
*) echo "Not supported %{ocamlc-config:system} '$1'."; help_exit
*) echo "Not supported %{ocaml-config:system} '$1'."; help_exit
esac

## Static linking configuration ##
Expand Down

0 comments on commit c8ffe1c

Please sign in to comment.