From: "Steven Rostedt (VMware)" <rostedt@xxxxxxxxxxx> There's a test if prefix == /usr/local and if so, then etcdir is set to "/etc", otherwise it is set to $(prefix)/etc, which is not correct. Always have etcdir = "/etc". Signed-off-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx> --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index 5a9d33455143..92e682b68b40 100644 --- a/Makefile +++ b/Makefile @@ -71,11 +71,7 @@ ifeq ("$(LIBTRACEEVENT_INCLUDES)","") $(error libtraceevent.so not installed) endif -ifeq ($(prefix),/usr/local) etcdir ?= /etc -else -etcdir ?= $(prefix)/etc -endif etcdir_SQ = '$(subst ','\'',$(etcdir))' export man_dir man_dir_SQ html_install html_install_SQ INSTALL -- 2.29.2