summaryrefslogtreecommitdiffstats
path: root/extras
diff options
context:
space:
mode:
authorAnand Avati <avati@redhat.com>2013-02-17 21:46:47 -0800
committerAnand Avati <avati@redhat.com>2013-02-17 22:50:17 -0800
commit6f6789884227b8260f140c39c063d77b0516af97 (patch)
tree15f2c92a64d383f0298a0990ac16a92b05c89e44 /extras
parent1d172d6ee17b7d1e2cf4f4f1585941268cdc1039 (diff)
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 <avati@redhat.com> Reviewed-on: http://review.gluster.org/4532 Reviewed-by: Raghavendra Bhat <raghavendra@redhat.com> Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'extras')
-rw-r--r--extras/LinuxRPM/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/LinuxRPM/Makefile.am b/extras/LinuxRPM/Makefile.am
index e63a1ce40e6..91e707bf346 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