From bfede2a0861ee7a14f023e7c31d7a59be1d52efc Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sun, 25 Nov 2018 10:20:06 +0100 Subject: build: change @foo@ to $(foo) in automake makefiles When using automake, all AC_SUBSTed variables are made available as make variables, so that they can also be set at make time. Therefore, they need not use the @harcoded@ style. --- Makefile.mesh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile.mesh') diff --git a/Makefile.mesh b/Makefile.mesh index 0df7db2be..50bcc19ad 100644 --- a/Makefile.mesh +++ b/Makefile.mesh @@ -25,7 +25,7 @@ mesh_meshd_SOURCES = $(mesh_sources) mesh/main.c mesh_meshd_LDADD = src/shared/ecc.lo src/shared/queue.lo src/shared/io-ell.lo \ src/shared/util.lo src/shared/hci.lo src/shared/mgmt.lo \ - @DBUS_LIBS@ @ELL_LIBS@ -ljson-c + $(DBUS_LIBS) $(ELL_LIBS) -ljson-c noinst_PROGRAMS += mesh/btmesh @@ -37,6 +37,6 @@ mesh_btmesh_SOURCES = $(mesh_sources) \ mesh_btmesh_LDADD = src/shared/ecc.lo src/shared/queue.lo src/shared/io-ell.lo \ src/shared/util.lo src/shared/hci.lo src/shared/mgmt.lo \ src/libshared-mainloop.la \ - -lreadline @ELL_LIBS@ -ljson-c + -lreadline $(ELL_LIBS) -ljson-c endif -- cgit v1.2.1