From 6f6789884227b8260f140c39c063d77b0516af97 Mon Sep 17 00:00:00 2001 From: Anand Avati Date: Sun, 17 Feb 2013 21:46:47 -0800 Subject: LinuxRPM/Makefile: fix backquote which was triggering recursive make The following Makefile snippet: --snip-- all: @echo "To build RPMS run `make glusterrpms`" --snip-- was using `backquotes` in the string, and thereby triggering a nested make on "glusterrpms" target implicitly as part of 'make all', thus defeating the intention. So use single quotes instead of backquotes. It is unexplained why this nested 'make glusterrpms' was not called on the build server during regression test. Change-Id: I8a8d1d4f565d03cfb27341e6183af5b09530eb60 BUG: 819130 Signed-off-by: Anand Avati Reviewed-on: http://review.gluster.org/4532 Reviewed-by: Raghavendra Bhat Tested-by: Gluster Build System --- extras/LinuxRPM/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/LinuxRPM/Makefile.am b/extras/LinuxRPM/Makefile.am index e63a1ce40..91e707bf3 100644 --- a/extras/LinuxRPM/Makefile.am +++ b/extras/LinuxRPM/Makefile.am @@ -6,7 +6,7 @@ GFS_SPEC = ../../glusterfs.spec .PHONY: all all: - @echo "To build RPMS run `make glusterrpms`" + @echo "To build RPMS run 'make glusterrpms'" .PHONY: glusterrpms prep srcrpm testsrpm clean -- cgit