From 5a900eadc2163e3f92ca71fea23996b517def078 Mon Sep 17 00:00:00 2001 From: jfarrell Date: Sun, 18 Aug 2013 10:54:52 -0400 Subject: [PATCH] THRIFT-2136:Vagrant build not compiling java, ruby, php, go libs due to missing dependencies Client: build Patch: jfarrell Updates ruby build to use bundler --- lib/rb/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/rb/Makefile.am b/lib/rb/Makefile.am index 0f103579..cad71be5 100644 --- a/lib/rb/Makefile.am +++ b/lib/rb/Makefile.am @@ -31,7 +31,10 @@ EXTRA_DIST = \ DESTDIR ?= / all-local: - $(RAKE) +if HAVE_BUNDLER + $(BUNDLER) install + $(BUNDLER) exec rake +endif install-exec-hook: $(RAKE) install -- 2.17.1