Skip to content

Commit

Permalink
build: Fix spelling of --enable-pybridge option
Browse files Browse the repository at this point in the history
Giving --enable-pybridge to configure works as intended, but there
will be a warning as well because it is mispelled in one place:

    configure: WARNING: unrecognized options: --enable-pybridge
  • Loading branch information
mvollmer committed Jun 22, 2023
1 parent 55539de commit a922cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ AC_MSG_RESULT(${enable_ssh:=yes})

# --enable-pybridge
AC_MSG_CHECKING([whether to install the python cockpit-bridge])
AC_ARG_ENABLE(bridge, AS_HELP_STRING([--enable-pybridge], [Install python cockpit-bridge]))
AC_ARG_ENABLE(pybridge, AS_HELP_STRING([--enable-pybridge], [Install python cockpit-bridge]))
AM_CONDITIONAL(WITH_PYBRIDGE, test "$enable_pybridge" = "yes")
AC_MSG_RESULT(${enable_pybridge:=no})

Expand Down

0 comments on commit a922cd2

Please sign in to comment.