From f7b8b1c95a11a8100b3bbb2a820dcead1b094655 Mon Sep 17 00:00:00 2001 From: Emmanuel Dreyfus Date: Fri, 17 Apr 2015 06:09:15 +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. Backport of I8caed4000f3c91cb3a685453848fb854793945ed BUG: 1138897 Change-Id: I48a24231ba90aa3e84bf433b63ae5cb50307f042 Signed-off-by: Emmanuel Dreyfus Reviewed-on: http://review.gluster.org/10278 Tested-by: Gluster Build System Reviewed-by: Kaleb KEITHLEY Reviewed-by: Raghavendra Bhat --- cli/src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/src') diff --git a/cli/src/Makefile.am b/cli/src/Makefile.am index 434122b2a78..db1d089b8f9 100644 --- a/cli/src/Makefile.am +++ b/cli/src/Makefile.am @@ -29,4 +29,4 @@ $(top_builddir)/libglusterfs/src/libglusterfs.la: $(MAKE) -C $(top_builddir)/libglusterfs/src/ all install-data-hook: - $(mkdir_p) $(DESTDIR)$(localstatedir)/run/gluster + $(MKDIR_P) $(DESTDIR)$(localstatedir)/run/gluster -- cgit