All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] package/vde2: remove trailing \ from last item of _VDE2_CONF_OPTS
@ 2016-07-16  9:42 Jerzy Grzegorek
  2016-07-16  9:42 ` [Buildroot] [PATCH 2/3] package/vde2: put the \ just one space after the line of _VDE2_CONF_OPTS items Jerzy Grzegorek
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jerzy Grzegorek @ 2016-07-16  9:42 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
---
 package/vde2/vde2.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/vde2/vde2.mk b/package/vde2/vde2.mk
index d9b11bb..558d0f3 100644
--- a/package/vde2/vde2.mk
+++ b/package/vde2/vde2.mk
@@ -32,7 +32,7 @@ VDE2_CONF_OPTS = \
 	--disable-python        \
 	--disable-profile       \
 	--disable-kernel-switch \
-	--enable-tuntap         \
+	--enable-tuntap
 
 #?Package does not build in parallel due to improper make rules
 VDE2_MAKE = $(MAKE1)
@@ -44,7 +44,7 @@ HOST_VDE2_CONF_OPTS = \
 	--disable-python        \
 	--disable-profile       \
 	--disable-kernel-switch \
-	--enable-tuntap         \
+	--enable-tuntap
 
 HOST_VDE2_MAKE = $(MAKE1)
 
-- 
1.9.1

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

* [Buildroot] [PATCH 2/3] package/vde2: put the \ just one space after the line of _VDE2_CONF_OPTS items
  2016-07-16  9:42 [Buildroot] [PATCH 1/3] package/vde2: remove trailing \ from last item of _VDE2_CONF_OPTS Jerzy Grzegorek
@ 2016-07-16  9:42 ` Jerzy Grzegorek
  2016-07-16  9:42 ` [Buildroot] [PATCH 3/3] package/vde2: sort alphabetically " Jerzy Grzegorek
  2016-07-16  9:54 ` [Buildroot] [PATCH 1/3] package/vde2: remove trailing \ from last item of _VDE2_CONF_OPTS Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Jerzy Grzegorek @ 2016-07-16  9:42 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
---
 package/vde2/vde2.mk | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/package/vde2/vde2.mk b/package/vde2/vde2.mk
index 558d0f3..0b86e9f 100644
--- a/package/vde2/vde2.mk
+++ b/package/vde2/vde2.mk
@@ -26,11 +26,11 @@ VDE2_AUTORECONF = YES
 # Note: disabled features can be added with corresponding dependencies
 #       in future commits.
 VDE2_CONF_OPTS = \
-	--disable-experimental  \
-	--disable-cryptcab      \
-	--disable-pcap          \
-	--disable-python        \
-	--disable-profile       \
+	--disable-experimental \
+	--disable-cryptcab \
+	--disable-pcap \
+	--disable-python \
+	--disable-profile \
 	--disable-kernel-switch \
 	--enable-tuntap
 
@@ -38,11 +38,11 @@ VDE2_CONF_OPTS = \
 VDE2_MAKE = $(MAKE1)
 
 HOST_VDE2_CONF_OPTS = \
-	--disable-experimental  \
-	--disable-cryptcab      \
-	--disable-pcap          \
-	--disable-python        \
-	--disable-profile       \
+	--disable-experimental \
+	--disable-cryptcab \
+	--disable-pcap \
+	--disable-python \
+	--disable-profile \
 	--disable-kernel-switch \
 	--enable-tuntap
 
-- 
1.9.1

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

* [Buildroot] [PATCH 3/3] package/vde2: sort alphabetically _VDE2_CONF_OPTS items
  2016-07-16  9:42 [Buildroot] [PATCH 1/3] package/vde2: remove trailing \ from last item of _VDE2_CONF_OPTS Jerzy Grzegorek
  2016-07-16  9:42 ` [Buildroot] [PATCH 2/3] package/vde2: put the \ just one space after the line of _VDE2_CONF_OPTS items Jerzy Grzegorek
@ 2016-07-16  9:42 ` Jerzy Grzegorek
  2016-07-16  9:54 ` [Buildroot] [PATCH 1/3] package/vde2: remove trailing \ from last item of _VDE2_CONF_OPTS Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Jerzy Grzegorek @ 2016-07-16  9:42 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
---
 package/vde2/vde2.mk | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/package/vde2/vde2.mk b/package/vde2/vde2.mk
index 0b86e9f..b750adb 100644
--- a/package/vde2/vde2.mk
+++ b/package/vde2/vde2.mk
@@ -26,24 +26,24 @@ VDE2_AUTORECONF = YES
 # Note: disabled features can be added with corresponding dependencies
 #       in future commits.
 VDE2_CONF_OPTS = \
-	--disable-experimental \
 	--disable-cryptcab \
+       --disable-experimental \
+       --disable-kernel-switch \
 	--disable-pcap \
-	--disable-python \
 	--disable-profile \
-	--disable-kernel-switch \
+       --disable-python \
 	--enable-tuntap
 
 #?Package does not build in parallel due to improper make rules
 VDE2_MAKE = $(MAKE1)
 
 HOST_VDE2_CONF_OPTS = \
-	--disable-experimental \
 	--disable-cryptcab \
+       --disable-experimental \
+       --disable-kernel-switch \
 	--disable-pcap \
-	--disable-python \
 	--disable-profile \
-	--disable-kernel-switch \
+       --disable-python \
 	--enable-tuntap
 
 HOST_VDE2_MAKE = $(MAKE1)
-- 
1.9.1

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

* [Buildroot] [PATCH 1/3] package/vde2: remove trailing \ from last item of _VDE2_CONF_OPTS
  2016-07-16  9:42 [Buildroot] [PATCH 1/3] package/vde2: remove trailing \ from last item of _VDE2_CONF_OPTS Jerzy Grzegorek
  2016-07-16  9:42 ` [Buildroot] [PATCH 2/3] package/vde2: put the \ just one space after the line of _VDE2_CONF_OPTS items Jerzy Grzegorek
  2016-07-16  9:42 ` [Buildroot] [PATCH 3/3] package/vde2: sort alphabetically " Jerzy Grzegorek
@ 2016-07-16  9:54 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-07-16  9:54 UTC (permalink / raw)
  To: buildroot

Hello,

On Sat, 16 Jul 2016 11:42:32 +0200, Jerzy Grzegorek wrote:
> Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
> ---
>  package/vde2/vde2.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Series applied, thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2016-07-16  9:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-16  9:42 [Buildroot] [PATCH 1/3] package/vde2: remove trailing \ from last item of _VDE2_CONF_OPTS Jerzy Grzegorek
2016-07-16  9:42 ` [Buildroot] [PATCH 2/3] package/vde2: put the \ just one space after the line of _VDE2_CONF_OPTS items Jerzy Grzegorek
2016-07-16  9:42 ` [Buildroot] [PATCH 3/3] package/vde2: sort alphabetically " Jerzy Grzegorek
2016-07-16  9:54 ` [Buildroot] [PATCH 1/3] package/vde2: remove trailing \ from last item of _VDE2_CONF_OPTS Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.