Repository: incubator-hawq Updated Branches: refs/heads/master 61f69c940 -> cc77b5de0
HAWQ-1350. Fix ranger-plugin makefile error Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/cc77b5de Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/cc77b5de Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/cc77b5de Branch: refs/heads/master Commit: cc77b5de0d91bd50f68c546ec2d6e8e4748c0394 Parents: 61f69c9 Author: stanlyxiang <[email protected]> Authored: Mon Feb 27 16:26:48 2017 +0800 Committer: stanlyxiang <[email protected]> Committed: Mon Feb 27 16:29:24 2017 +0800 ---------------------------------------------------------------------- ranger-plugin/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/cc77b5de/ranger-plugin/Makefile ---------------------------------------------------------------------- diff --git a/ranger-plugin/Makefile b/ranger-plugin/Makefile index 4bac4fe..48ba32f 100644 --- a/ranger-plugin/Makefile +++ b/ranger-plugin/Makefile @@ -29,9 +29,13 @@ ifeq ($(enable_rps), yes) all: ifdef MAVEN - $(MAVEN) $(MVN_OPTS) clean package install + $(MAVEN) $(MVN_OPTS) clean + $(MAVEN) $(MVN_OPTS) packag + $(MAVEN) $(MVN_OPTS) install else - @$(missing) mvn $< $(MVN_OPTS) clean package install + @$(missing) mvn $< $(MVN_OPTS) clean + @$(missing) mvn $< $(MVN_OPTS) package + @$(missing) mvn $< $(MVN_OPTS) install endif install:
