summaryrefslogtreecommitdiff
path: root/Makefile.mesh
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@inai.de>2018-11-25 10:20:06 +0100
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2018-11-26 11:24:34 +0200
commitbfede2a0861ee7a14f023e7c31d7a59be1d52efc (patch)
tree797bd1e4db0f51529694ba61d3fdea8d39045c7f /Makefile.mesh
parent3a74874c6de4ec0cf59f4a6d251697bbf2d61a97 (diff)
downloadbluez-bfede2a0861ee7a14f023e7c31d7a59be1d52efc.tar.gz
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.
Diffstat (limited to 'Makefile.mesh')
-rw-r--r--Makefile.mesh4
1 files changed, 2 insertions, 2 deletions
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