diff mbox

zeromq: Remove useless space

Message ID 1436814745-21624-1-git-send-email-maxime.hadjinlian@gmail.com
State Accepted
Headers show

Commit Message

Maxime Hadjinlian July 13, 2015, 7:12 p.m. UTC
Be coherent with all the other ifeq check where there's no space.
From the doc of Make, it should not cause any trouble, but coherence has
its own merit.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
---
 package/zeromq/zeromq.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Thomas Petazzoni July 13, 2015, 8:25 p.m. UTC | #1
Dear Maxime Hadjinlian,

On Mon, 13 Jul 2015 21:12:25 +0200, Maxime Hadjinlian wrote:
> Be coherent with all the other ifeq check where there's no space.
> From the doc of Make, it should not cause any trouble, but coherence has
> its own merit.
> 
> Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
> ---
>  package/zeromq/zeromq.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied, thanks.

Thomas
diff mbox

Patch

diff --git a/package/zeromq/zeromq.mk b/package/zeromq/zeromq.mk
index 623a12e..029fab2 100644
--- a/package/zeromq/zeromq.mk
+++ b/package/zeromq/zeromq.mk
@@ -36,7 +36,7 @@  ZEROMQ_CONF_OPTS += --with-system-pgm
 endif
 
 # ZeroMQ uses libsodium if it's available.
-ifeq ($(BR2_PACKAGE_LIBSODIUM), y)
+ifeq ($(BR2_PACKAGE_LIBSODIUM),y)
 ZEROMQ_DEPENDENCIES += libsodium
 ZEROMQ_CONF_OPTS += --with-libsodium="$(STAGING_DIR)/usr"
 else