Browse Source

Merge pull request #10454 from TDT-AG/pr/20191104-keepalived

keepalived: fix run errors on non x86_64 architectures
lilik-openwrt-22.03
Florian Eckert 5 years ago
committed by GitHub
parent
commit
27e1489eee
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      net/keepalived/Makefile

+ 4
- 2
net/keepalived/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=keepalived
PKG_VERSION:=2.0.19
PKG_RELEASE:=1
PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://www.keepalived.org/software
@ -86,7 +86,9 @@ endef
CONFIGURE_ARGS+= \
--with-init=SYSV \
--disable-nftables
--disable-nftables \
--disable-track-process \
--with-run-dir="/var/run"
ifeq ($(CONFIG_KEEPALIVED_VRRP),)
CONFIGURE_ARGS += \


Loading…
Cancel
Save