diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2017-02-07 09:41:58 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-02-07 09:43:41 +0100 |
commit | b2cf7ca0e2fd9763ec566c3e8808f08dcb9391d2 (patch) | |
tree | fa1d41c94bef109493ebb0b36108f48e26d7c94a | |
parent | 94a39b017882f4cbe0c7cd863bf6a9c27fe4b35d (diff) | |
download | buildroot-b2cf7ca0e2fd9763ec566c3e8808f08dcb9391d2.tar.gz buildroot-b2cf7ca0e2fd9763ec566c3e8808f08dcb9391d2.zip |
babeld: fix typo in variable name
As pointed out during the check-package discussion, there is a typo in a
variable name:
http://lists.busybox.net/pipermail/buildroot/2016-December/180765.html
Fixing that also shows that the license file was misspelled, so fix that as
well (LICENSE/LICENCE).
Reported-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/babeld/babeld.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/babeld/babeld.mk b/package/babeld/babeld.mk index ca39c7143b..d718237d98 100644 --- a/package/babeld/babeld.mk +++ b/package/babeld/babeld.mk @@ -6,8 +6,8 @@ BABELD_VERSION = 1.7.1 BABELD_SITE = http://www.pps.univ-paris-diderot.fr/~jch/software/files -BALELD_LICENSE = MIT -BALELD_LICENSE_FILES = LICENSE +BABELD_LICENSE = MIT +BABELD_LICENSE_FILES = LICENCE define BABELD_BUILD_CMDS $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) |