diff mbox series

[RFC,nftables,1/4] configure: remove unused AC_SUBST macros.

Message ID 20190916124203.31380-2-jeremy@azazel.net
State Accepted
Delegated to: Pablo Neira
Headers show
Series Add Linenoise support to the CLI. | expand

Commit Message

Jeremy Sowden Sept. 16, 2019, 12:42 p.m. UTC
configure.ac contains a couple of AC_SUBST macros which serve no
purpose.  Remove them.

Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
---
 configure.ac | 2 --
 1 file changed, 2 deletions(-)

Comments

Pablo Neira Ayuso Sept. 20, 2019, 10:15 a.m. UTC | #1
On Mon, Sep 16, 2019 at 01:42:00PM +0100, Jeremy Sowden wrote:
> configure.ac contains a couple of AC_SUBST macros which serve no
> purpose.  Remove them.

Applied this patch to reduce your next batch, thanks.
diff mbox series

Patch

diff --git a/configure.ac b/configure.ac
index f26514376fd0..68f97f090535 100644
--- a/configure.ac
+++ b/configure.ac
@@ -75,7 +75,6 @@  AC_CHECK_LIB([readline], [readline], ,
 	     AC_MSG_ERROR([No suitable version of libreadline found]))
 AC_DEFINE([HAVE_LIBREADLINE], [1], [])
 ])
-AC_SUBST(with_cli)
 AM_CONDITIONAL([BUILD_CLI], [test "x$with_cli" != xno])
 
 AC_ARG_WITH([xtables], [AS_HELP_STRING([--with-xtables],
@@ -95,7 +94,6 @@  AC_CHECK_LIB([jansson], [json_object], ,
 	AC_MSG_ERROR([No suitable version of libjansson found]))
 AC_DEFINE([HAVE_LIBJANSSON], [1], [Define if you have libjansson])
 ])
-AC_SUBST(with_json)
 AM_CONDITIONAL([BUILD_JSON], [test "x$with_json" != xno])
 
 AC_ARG_ENABLE(python,