c7f4b96471
Since the trailing slash is stripped from $($(PKG)_SITE) by pkg-generic.mk: $(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE)) so it is redundant. This patch removes it from $(PKG)_SITE variable for BR consistency. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
629 B
Makefile
21 lines
629 B
Makefile
################################################################################
|
|
#
|
|
# localedef
|
|
#
|
|
################################################################################
|
|
|
|
LOCALEDEF_VERSION = 2.14.1-r17443-ptx1
|
|
LOCALEDEF_SOURCE = localedef-eglibc-$(LOCALEDEF_VERSION).tar.bz2
|
|
LOCALEDEF_SITE = http://www.pengutronix.de/software/ptxdist/temporary-src
|
|
|
|
HOST_LOCALEDEF_CONF_OPT += \
|
|
--prefix=/usr \
|
|
--with-glibc=./eglibc
|
|
|
|
# The makefile does not implement an install target
|
|
define HOST_LOCALEDEF_INSTALL_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/localedef $(HOST_DIR)/usr/bin/localedef
|
|
endef
|
|
|
|
$(eval $(host-autotools-package))
|