From f09b07f26c2bc15f59e64cc393c003966d7ca217 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Mon, 11 Nov 2019 18:02:49 +0100 Subject: Makefile.am: Use ${} instead of @...@ Referencing to variables using @...@ means they will be replaced by configure. This is not needed and may cause problems later. Suggested-by: Jan Engelhardt Signed-off-by: Phil Sutter Acked-by: Arturo Borrero Gonzalez Acked-by: Pablo Neira Ayuso --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index f64d604..df4c0cb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,7 +7,7 @@ EXTRA_DIST = $(man_MANS) Make_global.am doc m4 tests SUBDIRS = extensions src DIST_SUBDIRS = include src extensions -LIBS = @LIBNETFILTER_CONNTRACK_LIBS@ +LIBS = $(LIBNETFILTER_CONNTRACK_LIBS) dist-hook: rm -rf `find $(distdir)/doc -name *.orig` -- cgit v1.2.3