From: Laszlo Boszormenyi (GCS) Date: Sun, 15 May 2022 12:42:11 +0000 (+0100) Subject: do not use bundler as per Ruby policy X-Git-Tag: archive/raspbian/0.16.0-5+rpi1^2~15 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a0f8a5cdcd941da4c1bc9f59bf39deb864f97862;p=thrift.git do not use bundler as per Ruby policy Bug-Debian: https://bugs.debian.org/804668 Last-Update: 2019-10-23 Gbp-Pq: Name no_bundler_use.patch --- diff --git a/lib/rb/Makefile.am b/lib/rb/Makefile.am index 1841065..66f1cce 100755 --- a/lib/rb/Makefile.am +++ b/lib/rb/Makefile.am @@ -22,20 +22,24 @@ DESTDIR ?= / if HAVE_BUNDLER all-local: - $(BUNDLER) install - $(BUNDLER) exec rake build_ext + echo Do not use bundler for all-local +# $(BUNDLER) install +# $(BUNDLER) exec rake build_ext install-exec-hook: - $(BUNDLER) exec rake install + echo Do not use bundler for install-exec-hook +# $(BUNDLER) exec rake install clean-local: - $(BUNDLER) install - $(BUNDLER) exec rake clean + echo Do not use bundler for clean-local +# $(BUNDLER) install +# $(BUNDLER) exec rake clean $(RM) -r spec/gen-rb/ check-local: all - $(BUNDLER) install - $(BUNDLER) exec rake + echo Do not use bundler for check-local +# $(BUNDLER) install +# $(BUNDLER) exec rake endif diff --git a/test/rb/Makefile.am b/test/rb/Makefile.am index 3910934..4a1c866 100644 --- a/test/rb/Makefile.am +++ b/test/rb/Makefile.am @@ -26,8 +26,9 @@ precross: stubs check: stubs if HAVE_BUNDLER - $(BUNDLER) install - $(BUNDLER) exec $(RUBY) -I. test_suite.rb + echo Do not use bundler for check +# $(BUNDLER) install +# $(BUNDLER) exec $(RUBY) -I. test_suite.rb endif clean-local: