Skip to content

Commit

Permalink
- Better ./configure --help
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@8374 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Mar 26, 2011
1 parent 00919be commit 0f97b03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions configure
Expand Up @@ -1317,8 +1317,8 @@ Optional Features:
--disable-option-checking ignore unrecognized --enable/--with options
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
Enables RML -trace support, default=no
Enables compilation of OMShell-terminal, default=yes
--enable-rml-trace[=no] RML -trace support
--enable-omshell-terminal[=yes] Enables compilation of OMShell-terminal
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
Expand Down
4 changes: 2 additions & 2 deletions configure.in
Expand Up @@ -134,7 +134,7 @@ fi

AC_MSG_CHECKING([if the user wants RML -trace support])
RML_TRACE=",-ftrace"
AC_ARG_ENABLE(rml-trace, [Enables RML -trace support, default=no],[test "xno" = x"$enableval" && RML_TRACE=""])
AC_ARG_ENABLE(rml-trace, [--enable-rml-trace[[=no]] RML -trace support],[test "xno" = x"$enableval" && RML_TRACE=""])
if test -z "$RML_TRACE" ; then
AC_MSG_RESULT([no])
else
Expand All @@ -157,7 +157,7 @@ fi

AC_MSG_CHECKING([if the user wants to compile OMShell-terminal])
OMSHELL_TERMINAL="mosh"
AC_ARG_ENABLE(omshell-terminal, [Enables compilation of OMShell-terminal, default=yes],[test "xno" = x"$enableval" && OMSHELL_TERMINAL=""])
AC_ARG_ENABLE(omshell-terminal, [--enable-omshell-terminal[[=yes]] Enables compilation of OMShell-terminal],[test "xno" = x"$enableval" && OMSHELL_TERMINAL=""])
if test -z "$OMSHELL_TERMINAL" ; then
AC_MSG_RESULT([no])
else
Expand Down

0 comments on commit 0f97b03

Please sign in to comment.