mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
Replace the remaining git:// URLs with their https:// equivalents as
this is more secure and also more palatable to corporate firewalls.
Signed-off-by: Markus Mayer <mmayer@broadcom.com>
[yann.morin.1998@free.fr: convert dahdi-linux too]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 6626bf7c5f)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
24 lines
755 B
Makefile
24 lines
755 B
Makefile
################################################################################
|
|
#
|
|
# aer-inject
|
|
#
|
|
################################################################################
|
|
|
|
AER_INJECT_VERSION = 9bd5e2c7886fca72f139cd8402488a2235957d41
|
|
AER_INJECT_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/aer-inject.git
|
|
AER_INJECT_SITE_METHOD = git
|
|
AER_INJECT_LICENSE = GPL-2.0
|
|
AER_INJECT_LICENSE_FILES = README
|
|
AER_INJECT_DEPENDENCIES = host-flex host-bison
|
|
|
|
define AER_INJECT_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS)
|
|
endef
|
|
|
|
define AER_INJECT_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
|
|
DESTDIR=$(TARGET_DIR) PREFIX=/usr/bin install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|