From 59bde2b4dfdf3f1ad388a64254f70b6a70e08418 Mon Sep 17 00:00:00 2001 From: Thomas De Schampheleire Date: Wed, 11 Jun 2014 21:12:29 +0200 Subject: [PATCH] mkpasswd: change version from 'undefined' to 'buildroot-$(BR2_VERSION)' The sources of the mkpasswd package are shipped with Buildroot, rather than downloaded from an external location. As a result, no explicit version is defined, causing build messages and build directory to show 'undefined' as version. This patch sets the version for mkpasswd to 'buildroot-$(BR2_VERSION), which would for example expand to 'buildroot-2014.05'. Signed-off-by: Thomas De Schampheleire Acked-by: "Yann E. MORIN" Signed-off-by: Thomas Petazzoni --- package/mkpasswd/mkpasswd.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/mkpasswd/mkpasswd.mk b/package/mkpasswd/mkpasswd.mk index dc6de19bc..0447ecc9a 100644 --- a/package/mkpasswd/mkpasswd.mk +++ b/package/mkpasswd/mkpasswd.mk @@ -10,6 +10,8 @@ HOST_MKPASSWD_SOURCE = HOST_MKPASSWD_LICENSE = GPLv2+ +HOST_MKPASSWD_VERSION = buildroot-$(BR2_VERSION) + define HOST_MKPASSWD_BUILD_CMDS $(HOSTCC) $(HOST_CFLAGS) $(HOST_LDFLAGS) \ package/mkpasswd/mkpasswd.c package/mkpasswd/utils.c \