zeromq: Remove useless space
authorMaxime Hadjinlian <maxime.hadjinlian@gmail.com>
Mon, 13 Jul 2015 19:12:25 +0000 (21:12 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Mon, 13 Jul 2015 20:25:21 +0000 (22:25 +0200)
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>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/zeromq/zeromq.mk

index 623a12eb37d82fbbda7444e808a7cc9ceff7a6b6..029fab2bc7373fe3291a79680e8be0ae60b5997c 100644 (file)
@@ -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