diff mbox series

[1/2] build: Fix typo in external-plugins configure option

Message ID 20240214153635.156548-1-szymon.janc@codecoup.pl (mailing list archive)
State Accepted
Commit 094f3fdcc0ac57c9feee8a1a3f458ab27f5f593f
Headers show
Series [1/2] build: Fix typo in external-plugins configure option | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
tedd_an/CheckPatch success CheckPatch PASS
tedd_an/GitLint success Gitlint PASS
tedd_an/BuildEll success Build ELL PASS
tedd_an/BluezMake success Bluez Make PASS
tedd_an/MakeCheck success Bluez Make Check PASS
tedd_an/MakeDistcheck success Make Distcheck PASS
tedd_an/CheckValgrind success Check Valgrind PASS
tedd_an/CheckSmatch success CheckSparse PASS
tedd_an/bluezmakeextell success Make External ELL PASS
tedd_an/IncrementalBuild success Incremental Build PASS
tedd_an/ScanBuild success Scan Build PASS

Commit Message

Szymon Janc Feb. 14, 2024, 3:36 p.m. UTC
This was causing build errors as macros were also generated with typo.
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

bluez.test.bot@gmail.com Feb. 14, 2024, 5:26 p.m. UTC | #1
This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=826059

---Test result---

Test Summary:
CheckPatch                    PASS      0.88 seconds
GitLint                       PASS      0.66 seconds
BuildEll                      PASS      24.99 seconds
BluezMake                     PASS      774.11 seconds
MakeCheck                     PASS      12.04 seconds
MakeDistcheck                 PASS      172.53 seconds
CheckValgrind                 PASS      238.07 seconds
CheckSmatch                   PASS      345.57 seconds
bluezmakeextell               PASS      112.49 seconds
IncrementalBuild              PASS      1430.76 seconds
ScanBuild                     PASS      1048.57 seconds



---
Regards,
Linux Bluetooth
patchwork-bot+bluetooth@kernel.org Feb. 14, 2024, 6:10 p.m. UTC | #2
Hello:

This series was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Wed, 14 Feb 2024 16:36:34 +0100 you wrote:
> This was causing build errors as macros were also generated with typo.
> ---
>  configure.ac | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - [1/2] build: Fix typo in external-plugins configure option
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=094f3fdcc0ac
  - [2/2] bootstrap-configure: Enable external plugins
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=b55d98e5cc97

You are awesome, thank you!
diff mbox series

Patch

diff --git a/configure.ac b/configure.ac
index 05c76dddb..70e9d4be8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -364,7 +364,7 @@  AC_ARG_ENABLE(deprecated, AS_HELP_STRING([--enable-deprecated],
 					[enable_deprecated=${enableval}])
 AM_CONDITIONAL(DEPRECATED, test "${enable_deprecated}" = "yes")
 
-AC_ARG_ENABLE(external-plugsin, AS_HELP_STRING([--enable-external-plugins],
+AC_ARG_ENABLE(external-plugins, AS_HELP_STRING([--enable-external-plugins],
 			[enable support for external plugins]),
 					[enable_external_plugins=${enableval}])
 AM_CONDITIONAL(EXTERNAL_PLUGINS, test "${enable_external_plugins}" = "yes")