Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] snowball-hdmiservice: Use github call
@ 2014-10-12 18:00 Maxime Hadjinlian
  2014-10-24 23:57 ` Yann E. MORIN
  2014-10-25  0:04 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Maxime Hadjinlian @ 2014-10-12 18:00 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/snowball-hdmiservice/snowball-hdmiservice.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/snowball-hdmiservice/snowball-hdmiservice.mk b/package/snowball-hdmiservice/snowball-hdmiservice.mk
index f254414..267b5ad 100644
--- a/package/snowball-hdmiservice/snowball-hdmiservice.mk
+++ b/package/snowball-hdmiservice/snowball-hdmiservice.mk
@@ -5,13 +5,13 @@
 ################################################################################
 
 SNOWBALL_HDMISERVICE_VERSION = f75c99d1c52707240a78b4ba78e41d20d3aa3b08
-SNOWBALL_HDMISERVICE_SITE = https://github.com/igloocommunity/hdmiservice
+SNOWBALL_HDMISERVICE_SITE = $(call github,igloocommunity,hdmiservice,$(SNOWBALL_HDMISERVICE_VERSION))
 SNOWBALL_HDMISERVICE_LICENSE = MIT
 SNOWBALL_HDMISERVICE_LICENSE_FILES = debian/copyright
 SNOWBALL_HDMISERVICE_INSTALL_STAGING = YES
 
 define SNOWBALL_HDMISERVICE_BUILD_CMDS
-	$(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)" 	
+	$(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)"
 endef
 
 define SNOWBALL_HDMISERVICE_INSTALL_STAGING_CMDS
-- 
2.1.1

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

* [Buildroot] [PATCH] snowball-hdmiservice: Use github call
  2014-10-12 18:00 [Buildroot] [PATCH] snowball-hdmiservice: Use github call Maxime Hadjinlian
@ 2014-10-24 23:57 ` Yann E. MORIN
  2014-10-25  0:04 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2014-10-24 23:57 UTC (permalink / raw)
  To: buildroot

Maxime, All,

On 2014-10-12 20:00 +0200, Maxime Hadjinlian spake thusly:
> Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>

Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Note: this patch also removes trailing spaces+tab, which is not readily
visible in a mail, you should have stated so in the commit log, somethig
like:

    Also get rid of traling spaces+tabs.

Regards,
Yann E. MORIN.

> ---
>  package/snowball-hdmiservice/snowball-hdmiservice.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/snowball-hdmiservice/snowball-hdmiservice.mk b/package/snowball-hdmiservice/snowball-hdmiservice.mk
> index f254414..267b5ad 100644
> --- a/package/snowball-hdmiservice/snowball-hdmiservice.mk
> +++ b/package/snowball-hdmiservice/snowball-hdmiservice.mk
> @@ -5,13 +5,13 @@
>  ################################################################################
>  
>  SNOWBALL_HDMISERVICE_VERSION = f75c99d1c52707240a78b4ba78e41d20d3aa3b08
> -SNOWBALL_HDMISERVICE_SITE = https://github.com/igloocommunity/hdmiservice
> +SNOWBALL_HDMISERVICE_SITE = $(call github,igloocommunity,hdmiservice,$(SNOWBALL_HDMISERVICE_VERSION))
>  SNOWBALL_HDMISERVICE_LICENSE = MIT
>  SNOWBALL_HDMISERVICE_LICENSE_FILES = debian/copyright
>  SNOWBALL_HDMISERVICE_INSTALL_STAGING = YES
>  
>  define SNOWBALL_HDMISERVICE_BUILD_CMDS
> -	$(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)" 	
> +	$(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)"
>  endef
>  
>  define SNOWBALL_HDMISERVICE_INSTALL_STAGING_CMDS
> -- 
> 2.1.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH] snowball-hdmiservice: Use github call
  2014-10-12 18:00 [Buildroot] [PATCH] snowball-hdmiservice: Use github call Maxime Hadjinlian
  2014-10-24 23:57 ` Yann E. MORIN
@ 2014-10-25  0:04 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2014-10-25  0:04 UTC (permalink / raw)
  To: buildroot

>>>>> "Maxime" == Maxime Hadjinlian <maxime.hadjinlian@gmail.com> writes:

 > Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2014-10-25  0:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-12 18:00 [Buildroot] [PATCH] snowball-hdmiservice: Use github call Maxime Hadjinlian
2014-10-24 23:57 ` Yann E. MORIN
2014-10-25  0:04 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox