diff options
author | Anand Avati <avati@redhat.com> | 2013-02-17 21:46:47 -0800 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2013-02-17 22:50:17 -0800 |
commit | 6f6789884227b8260f140c39c063d77b0516af97 (patch) | |
tree | 15f2c92a64d383f0298a0990ac16a92b05c89e44 /extras/LinuxRPM/Makefile.am | |
parent | 1d172d6ee17b7d1e2cf4f4f1585941268cdc1039 (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/LinuxRPM/Makefile.am')
-rw-r--r-- | extras/LinuxRPM/Makefile.am | 2 |
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 |