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>
20 lines
523 B
Makefile
20 lines
523 B
Makefile
################################################################################
|
|
#
|
|
# enscript
|
|
#
|
|
################################################################################
|
|
|
|
ENSCRIPT_VERSION = 1.6.6
|
|
ENSCRIPT_SITE = $(BR2_GNU_MIRROR)/enscript
|
|
ENSCRIPT_LICENSE = GPLv3+
|
|
ENSCRIPT_LICENSE_FILES = COPYING
|
|
|
|
# Enable pthread threads if toolchain supports threads
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
|
ENSCRIPT_CONF_OPT += --enable-threads=pth
|
|
else
|
|
ENSCRIPT_CONF_OPT += --disable-threads
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|