af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
706 B
Makefile
25 lines
706 B
Makefile
################################################################################
|
|
#
|
|
# mkpasswd
|
|
#
|
|
################################################################################
|
|
|
|
# source included in buildroot, taken from
|
|
# https://github.com/rfc1036/whois/blob/master/
|
|
# at revision 5a0f08500fa51608b6d3b73ee338be38c692eadb
|
|
HOST_MKPASSWD_LICENSE = GPL-2.0+
|
|
|
|
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
|