From d00bfe9410cfcaeb247ba68a88144defb5184ac9 Mon Sep 17 00:00:00 2001 From: José Bollo Date: Tue, 30 Apr 2019 22:18:08 +0200 Subject: Allow to tune installation directories MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The location of intrinsic bindings and samples could not be tuned but was fixed to be ${CMAKE_INSTALL_FULL_LIBDIR}/afb and ${CMAKE_INSTALL_FULL_DATADIR}/af-binder These default locations are not bad but it is important to be able to tune that location. Bug-AGL: SPEC-2367 Change-Id: I4d4f9e9490d61e3278ef35ac42f2143a752a7c37 Signed-off-by: José Bollo --- coverage/bin/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coverage/bin/Makefile') diff --git a/coverage/bin/Makefile b/coverage/bin/Makefile index b0914c7d..28c09cca 100644 --- a/coverage/bin/Makefile +++ b/coverage/bin/Makefile @@ -75,7 +75,7 @@ defs = -DAGL_DEVEL=1 \ -DWITH_DBUS_TRANSPARENCY=0 \ -DWITH_SUPERVISION=0 \ -DWITH_DYNAMIC_BINDING=1 \ - -DBINDING_INSTALL_DIR=\"$(shell pwd)/fake\" + -DINTRINSIC_BINDING_DIR=\"$(shell pwd)/fake\" afb_lib_src = $(shell ls $(srcdir)/*.c | egrep -v '/afs-|/main-|/fdev-epoll.c|/afb-ws-client.c' ) afb_lib_obj = $(patsubst $(srcdir)/%.c,%.o,$(afb_lib_src)) @@ -93,7 +93,7 @@ tst_flags = $(cflags) \ -I$(srcdir) \ $(shell pkg-config --cflags --libs check) -tst_defs = '-DAFB_VERSION="cov"' '-DBINDING_INSTALL_DIR="fake"' +tst_defs = '-DAFB_VERSION="cov"' '-DINTRINSIC_BINDING_DIR="fake"' tst_flags = $(cflags) \ -I$(srcdir) \ $(shell pkg-config --cflags --libs check) -- cgit 1.2.3-korg