mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 19:47:17 +00:00
fwknop: Fix AS_IF configure syntax
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
+29
@@ -0,0 +1,29 @@
|
|||||||
|
From fee4cb0ae2d1fcd012cb7f501c3db0d8ec910798 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Sun, 2 Apr 2023 10:01:51 -0700
|
||||||
|
Subject: [PATCH] configure.ac: Fix missing comma in AS_IF
|
||||||
|
|
||||||
|
this is flagged with autconf 2.72
|
||||||
|
|
||||||
|
Upstream-Status: Pending
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
configure.ac | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 47a069e..9cdfd3f 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -744,7 +744,7 @@ dnl
|
||||||
|
IPFW_EXE=""
|
||||||
|
IPTABLES_EXE=""
|
||||||
|
FIREWALLD_EXE=""
|
||||||
|
- ]
|
||||||
|
+ ],
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
--
|
||||||
|
2.40.0
|
||||||
|
|
||||||
@@ -8,25 +8,17 @@ inherit autotools-brokensep pkgconfig
|
|||||||
SRC_URI = "http://www.cipherdyne.org/${BPN}/download/${BPN}-${PV}.tar.bz2 \
|
SRC_URI = "http://www.cipherdyne.org/${BPN}/download/${BPN}-${PV}.tar.bz2 \
|
||||||
file://0001-Fix-compilation-with-GCC-s-fno-common-flag-fixes-305.patch \
|
file://0001-Fix-compilation-with-GCC-s-fno-common-flag-fixes-305.patch \
|
||||||
file://0001-Use-pkg-config-to-find-gpgme.patch \
|
file://0001-Use-pkg-config-to-find-gpgme.patch \
|
||||||
|
file://0001-configure.ac-Fix-missing-comma-in-AS_IF.patch \
|
||||||
"
|
"
|
||||||
SRC_URI[md5sum] = "47a9c7c214c40dceb5dc2aa8832e4f32"
|
|
||||||
SRC_URI[sha256sum] = "f6c09bec97ed8e474a98ae14f9f53e1bcdda33393f20667b6af3fb6bb894ca77"
|
SRC_URI[sha256sum] = "f6c09bec97ed8e474a98ae14f9f53e1bcdda33393f20667b6af3fb6bb894ca77"
|
||||||
|
|
||||||
DEPENDS = "libpcap gpgme"
|
DEPENDS = "libpcap gpgme"
|
||||||
|
|
||||||
EXTRA_OECONF = " --with-iptables=/usr/sbin/iptables \
|
EXTRA_OECONF = " --with-iptables=${sbindir}/iptables"
|
||||||
"
|
|
||||||
|
|
||||||
do_configure () {
|
do_configure:prepend () {
|
||||||
install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}/config
|
install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}/config
|
||||||
install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}/config
|
install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}/config
|
||||||
|
|
||||||
aclocal
|
|
||||||
libtoolize --automake --copy --force
|
|
||||||
autoconf
|
|
||||||
autoheader
|
|
||||||
automake -a
|
|
||||||
oe_runconf
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PACKAGES =+ "${PN}-client ${PN}-daemon"
|
PACKAGES =+ "${PN}-client ${PN}-daemon"
|
||||||
|
|||||||
Reference in New Issue
Block a user