package/dropbear: fix typo
authorYann E. MORIN <yann.morin.1998@free.fr>
Mon, 29 Jun 2020 20:13:00 +0000 (22:13 +0200)
committerYann E. MORIN <yann.morin.1998@free.fr>
Mon, 29 Jun 2020 20:13:00 +0000 (22:13 +0200)
There was a missing space between the append-assignment operator, and
the appended list of licenses.

Even though inconsequential technically speaking, we always use spaces
around operators elsewhere in the code.

So be it here too.

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
package/dropbear/dropbear.mk

index 2d0bd52ef8bfed8ac10c2db1c8e8b7eeb1d832dd..3eaa98d0a4376fd13b3cb6271373135ffe9c1740 100644 (file)
@@ -79,7 +79,7 @@ DROPBEAR_POST_EXTRACT_HOOKS += DROPBEAR_ENABLE_REVERSE_DNS
 endif
 
 ifeq ($(BR2_PACKAGE_DROPBEAR_SMALL),y)
-DROPBEAR_LICENSE +=, Unlicense, WTFPL
+DROPBEAR_LICENSE += , Unlicense, WTFPL
 DROPBEAR_LICENSE_FILES += libtommath/LICENSE libtomcrypt/LICENSE
 DROPBEAR_CONF_OPTS += --disable-zlib --enable-bundled-libtom
 else