From 8611fe7b30f86ddde5d5acfde45a6ec424186e02 Mon Sep 17 00:00:00 2001 From: Emmanuel Dreyfus Date: Sun, 19 Apr 2015 03:02:50 +0200 Subject: Fix case mistake for MKDIR_P in Makefiles Some makefiles used $(mkdir_p) instead of the corectly defined $(MKDIR_P). The former is substituted as an empty string, leading to possible failures depending of the user shell tolerance. NetBSD's /bin/sh seems to choke more easily than Linux's /bin/bash, but if the later does not fail, it does not created the intended directories anyway. Resubmit after rebase in hope that regression test will have less spurious failures. Backport of: I8caed4000f3c91cb3a685453848fb854793945ed BUG: 1212676 Change-Id: I393ffda8aa24bffce86f7b1f19b999ffa30c3562 Signed-off-by: Emmanuel Dreyfus Reviewed-on: http://review.gluster.org/10279 Tested-by: NetBSD Build System Tested-by: Gluster Build System Reviewed-by: Vijay Bellur --- tools/glusterfind/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/glusterfind/Makefile.am b/tools/glusterfind/Makefile.am index 872fff12047..c5a05d61061 100644 --- a/tools/glusterfind/Makefile.am +++ b/tools/glusterfind/Makefile.am @@ -7,4 +7,4 @@ bin_SCRIPTS = glusterfind CLEANFILES = $(bin_SCRIPTS) install-data-local: - $(mkdir_p) $(DESTDIR)$(GLUSTERD_WORKDIR)/glusterfind/.keys + $(MKDIR_P) $(DESTDIR)$(GLUSTERD_WORKDIR)/glusterfind/.keys -- cgit