buildrootschalter/package/mkpasswd/mkpasswd.mk
Thomas De Schampheleire 59bde2b4df 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 <thomas.de.schampheleire@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2014-06-14 19:10:25 +02:00

28 lines
777 B
Makefile

################################################################################
#
# mkpasswd
#
################################################################################
# source included in buildroot, taken from
# https://github.com/rfc1036/whois/blob/master/
# at revision 5a0f08500fa51608b6d3b73ee338be38c692eadb
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 \
-o $(@D)/mkpasswd -lcrypt
endef
define HOST_MKPASSWD_INSTALL_CMDS
$(INSTALL) -D -m 755 $(@D)/mkpasswd $(HOST_DIR)/usr/bin/mkpasswd
endef
$(eval $(host-generic-package))
MKPASSWD = $(HOST_DIR)/usr/bin/mkpasswd