7b0e757fb8
The recommended form is without the trailing slash, and will become mandatory in a coming commit. This avoids the need for the $$($(2)_SITE:/=) magic in package/pkg-generic.mk to avoid double slashes in download URLs, like "https://mosh.mit.edu//mosh-1.2.5.tar.gz". ^^ Note: this work has already been done inb0b9606530
a few months ago and earlier inc7f4b96471
and4a9eb20de8
, but no check has been added at that time to avoid new slashes to slip in, and so they did. This time a patch will follow immediately to prevent future mistakes from being unnoticed. Mass-replaced with the following command: git grep -l '_SITE.*/$' | xargs sed -i '/_SITE.*=/s|/$||' Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
718 B
Makefile
23 lines
718 B
Makefile
################################################################################
|
|
#
|
|
# mosh
|
|
#
|
|
################################################################################
|
|
|
|
MOSH_VERSION = 1.2.5
|
|
MOSH_SITE = https://mosh.mit.edu
|
|
MOSH_DEPENDENCIES = zlib ncurses protobuf openssl host-pkgconf
|
|
MOSH_LICENSE = GPLv3+ with exception
|
|
MOSH_LICENSE_FILES = COPYING COPYING.iOS
|
|
|
|
# help the detection of the SSP support: mosh configure.ac doesn't do
|
|
# a link test, so it doesn't detect when the toolchain doesn't have
|
|
# libssp.
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_SSP),)
|
|
MOSH_CONF_ENV += \
|
|
ax_cv_check_cflags__Werror___fstack_protector_all=no \
|
|
ax_cv_check_cxxflags__Werror___fstack_protector_all=no
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|