diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-02-09 07:46:17 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-02-11 17:58:02 +0100 |
commit | 9f81bad770304871177c16147fc150a1998ee4cc (patch) | |
tree | 08bd2d4911d91a678fa979b76692942ddc40e31b | |
parent | ecf55c3f0276d2afb1a5f62e2e183bda730b8bac (diff) | |
download | buildroot-9f81bad770304871177c16147fc150a1998ee4cc.tar.gz buildroot-9f81bad770304871177c16147fc150a1998ee4cc.zip |
package/kbd: Fix broken Makefile when host-gettext was built before kbd
This patch uses the same solution used for util-linux:
https://git.busybox.net/buildroot/commit/package/util-linux?id=71f279f9a2bd3f086f3d31fa5a669d3f638bee99
To trigger the bug just build host-gettext before kbd.
Fixes
http://autobuild.buildroot.net/results/87e/87ea83ae4e7b7640651acd5031a624ca42e5b348/
http://autobuild.buildroot.net/results/532/532684b98e050cf5b4c50786bc9e8825eab21f97/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/kbd/kbd.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/kbd/kbd.mk b/package/kbd/kbd.mk index 8da153f2eb..9dabce13b1 100644 --- a/package/kbd/kbd.mk +++ b/package/kbd/kbd.mk @@ -17,4 +17,6 @@ KBD_LICENSE = GPLv2+ KBD_LICENSE_FILES = COPYING KBD_AUTORECONF = YES +KBD_INSTALL_TARGET_OPTS += MKINSTALLDIRS=$(@D)/config/mkinstalldirs + $(eval $(autotools-package)) |