mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
The Makefile is not parallel-safe, so we build with MAKE1. Since the
source is very small, this has minor impact on performance.
The genver.sh script contains a troll character U+c2a0 (non-break space)
which is refused by some versions of /bin/sh. Patch it away.
Fixes:
http://autobuild.buildroot.net/results/867/867c74ed74fd04ab06d1a10ff34ca177fe005fd2/
http://autobuild.buildroot.net/results/f97/f971629bc99147f9014e52c6ef71c3417faa6b67/
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: David Bachelart <david.bachelart@bbright.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
663 B
Makefile
27 lines
663 B
Makefile
################################################################################
|
|
#
|
|
# sslh
|
|
#
|
|
################################################################################
|
|
|
|
SSLH_VERSION = v1.18
|
|
SSLH_SITE = http://www.rutschle.net/tech/sslh
|
|
SSLH_LICENSE = GPLv2+
|
|
SSLH_LICENSE_FILES = COPYING
|
|
|
|
SSLH_DEPENDENCIES = libconfig
|
|
|
|
define SSLH_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define SSLH_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
define SSLH_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 755 -D package/sslh/S35sslh $(TARGET_DIR)/etc/init.d/S35sslh
|
|
endef
|
|
|
|
$(eval $(generic-package))
|