diff mbox

[2/2] package/freeswitch: Fix added license

Message ID 1461445189-31992-2-git-send-email-bernd.kuhls@t-online.de
State Accepted
Headers show

Commit Message

Bernd Kuhls April 23, 2016, 8:59 p.m. UTC
Noted by Thomas:
http://lists.busybox.net/pipermail/buildroot/2016-April/158864.html

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/freeswitch/freeswitch.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Thomas Petazzoni April 24, 2016, 8:20 a.m. UTC | #1
Hello,

On Sat, 23 Apr 2016 22:59:49 +0200, Bernd Kuhls wrote:

> diff --git a/package/freeswitch/freeswitch.mk b/package/freeswitch/freeswitch.mk
> index ec52172..f76ad24 100644
> --- a/package/freeswitch/freeswitch.mk
> +++ b/package/freeswitch/freeswitch.mk
> @@ -161,7 +161,7 @@ FREESWITCH_PRE_CONFIGURE_HOOKS += FREESWITCH_ENABLE_MODULES
>  # mod_isac supports a limited set of archs
>  # src/mod/codecs/mod_isac/typedefs.h
>  ifeq ($(BR2_i386)$(BR2_mips)$(BR2_mipsel)$(BR2_mips64)$(BR2_mips64el)$(BR2_x86_64),y)
> -FREESWITCH_LICENSE += BSD-3c (mod_isac)
> +FREESWITCH_LICENSE := $(FREESWITCH_LICENSE) BSD-3c (mod_isac)

Hum, licenses should be comma separated, so don't we need:

  FREESWITCH_LICENSE := $(FREESWITCH_LICENSE), BSD-3c (mod_isac)

 ?

Thomas
Thomas Petazzoni May 9, 2016, 8:02 p.m. UTC | #2
Hello,

On Sat, 23 Apr 2016 22:59:49 +0200, Bernd Kuhls wrote:
> Noted by Thomas:
> http://lists.busybox.net/pipermail/buildroot/2016-April/158864.html
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/freeswitch/freeswitch.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master after fixing the code so that licenses are comma
separated.

Thanks,

Thomas
diff mbox

Patch

diff --git a/package/freeswitch/freeswitch.mk b/package/freeswitch/freeswitch.mk
index ec52172..f76ad24 100644
--- a/package/freeswitch/freeswitch.mk
+++ b/package/freeswitch/freeswitch.mk
@@ -161,7 +161,7 @@  FREESWITCH_PRE_CONFIGURE_HOOKS += FREESWITCH_ENABLE_MODULES
 # mod_isac supports a limited set of archs
 # src/mod/codecs/mod_isac/typedefs.h
 ifeq ($(BR2_i386)$(BR2_mips)$(BR2_mipsel)$(BR2_mips64)$(BR2_mips64el)$(BR2_x86_64),y)
-FREESWITCH_LICENSE += BSD-3c (mod_isac)
+FREESWITCH_LICENSE := $(FREESWITCH_LICENSE) BSD-3c (mod_isac)
 FREESWITCH_LICENSE_FILES += src/mod/codecs/mod_isac/LICENSE
 FREESWITCH_ENABLED_MODULES += codecs/mod_isac
 endif