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@xxxxxxxxxxxxxxxx> --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ":" " ")) -- 2.34.1