linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] build: Fix typo in external-plugins configure option
@ 2024-02-14 15:36 Szymon Janc
  2024-02-14 15:36 ` [PATCH 2/2] bootstrap-configure: Enable external plugins Szymon Janc
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Szymon Janc @ 2024-02-14 15:36 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Szymon Janc

This was causing build errors as macros were also generated with typo.
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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")
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] bootstrap-configure: Enable external plugins
  2024-02-14 15:36 [PATCH 1/2] build: Fix typo in external-plugins configure option Szymon Janc
@ 2024-02-14 15:36 ` Szymon Janc
  2024-02-14 17:26 ` [1/2] build: Fix typo in external-plugins configure option bluez.test.bot
  2024-02-14 18:10 ` [PATCH 1/2] " patchwork-bot+bluetooth
  2 siblings, 0 replies; 4+ messages in thread
From: Szymon Janc @ 2024-02-14 15:36 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Szymon Janc

Make sure we build this code while in development mode.
---
 bootstrap-configure | 1 +
 1 file changed, 1 insertion(+)

diff --git a/bootstrap-configure b/bootstrap-configure
index 8172840d5..1c26909b9 100755
--- a/bootstrap-configure
+++ b/bootstrap-configure
@@ -34,4 +34,5 @@ fi
 		--enable-cups \
 		--enable-library \
 		--enable-admin \
+		--enable-external-plugins \
 		--disable-datafiles $*
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* RE: [1/2] build: Fix typo in external-plugins configure option
  2024-02-14 15:36 [PATCH 1/2] build: Fix typo in external-plugins configure option Szymon Janc
  2024-02-14 15:36 ` [PATCH 2/2] bootstrap-configure: Enable external plugins Szymon Janc
@ 2024-02-14 17:26 ` bluez.test.bot
  2024-02-14 18:10 ` [PATCH 1/2] " patchwork-bot+bluetooth
  2 siblings, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2024-02-14 17:26 UTC (permalink / raw)
  To: linux-bluetooth, szymon.janc

[-- Attachment #1: Type: text/plain, Size: 948 bytes --]

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


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] build: Fix typo in external-plugins configure option
  2024-02-14 15:36 [PATCH 1/2] build: Fix typo in external-plugins configure option Szymon Janc
  2024-02-14 15:36 ` [PATCH 2/2] bootstrap-configure: Enable external plugins Szymon Janc
  2024-02-14 17:26 ` [1/2] build: Fix typo in external-plugins configure option bluez.test.bot
@ 2024-02-14 18:10 ` patchwork-bot+bluetooth
  2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+bluetooth @ 2024-02-14 18:10 UTC (permalink / raw)
  To: Szymon Janc; +Cc: linux-bluetooth

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!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-02-14 18:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-14 15:36 [PATCH 1/2] build: Fix typo in external-plugins configure option Szymon Janc
2024-02-14 15:36 ` [PATCH 2/2] bootstrap-configure: Enable external plugins Szymon Janc
2024-02-14 17:26 ` [1/2] build: Fix typo in external-plugins configure option bluez.test.bot
2024-02-14 18:10 ` [PATCH 1/2] " patchwork-bot+bluetooth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).