diff mbox series

libtraceevent: make it possible to set libdir,includedir and mandir from outside

Message ID 20221031212110.170564-1-peter@berginkonsult.se (mailing list archive)
State Superseded
Headers show
Series libtraceevent: make it possible to set libdir,includedir and mandir from outside | expand

Commit Message

Peter Bergin Oct. 31, 2022, 9:21 p.m. UTC
When building in build frameworks such as openembedded it is desired
to use the defintion of directories from the build framework.

Signed-off-by: Peter Bergin <peter@berginkonsult.se>
---
 Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/Makefile b/Makefile
index 54ea247..8a6c697 100644
--- a/Makefile
+++ b/Makefile
@@ -52,12 +52,12 @@  endif
 
 libdir_relative ?= $(libdir_relative_temp)
 prefix ?= /usr/local
-man_dir = $(prefix)/share/man
+man_dir ?= $(prefix)/share/man
 man_dir_SQ = '$(subst ','\'',$(man_dir))'
-libdir = $(prefix)/$(libdir_relative)
+libdir ?= $(prefix)/$(libdir_relative)
 libdir_SQ = '$(subst ','\'',$(libdir))'
 includedir_relative ?= include/tracefs
-includedir = $(prefix)/$(includedir_relative)
+includedir ?= $(prefix)/$(includedir_relative)
 includedir_SQ = '$(subst ','\'',$(includedir))'
 pkgconfig_dir ?= $(word 1,$(shell $(PKG_CONFIG) 		\
 			--variable pc_path pkg-config | tr ":" " "))