From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45390) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1feISA-0005cZ-0R for guix-patches@gnu.org; Sat, 14 Jul 2018 07:11:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1feIS7-0002ND-6u for guix-patches@gnu.org; Sat, 14 Jul 2018 07:11:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51627) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1feIS7-0002N5-1x for guix-patches@gnu.org; Sat, 14 Jul 2018 07:11:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1feIS6-0001cG-Sf for guix-patches@gnu.org; Sat, 14 Jul 2018 07:11:02 -0400 Subject: [bug#32153] [PATCH 2/2] gnu: ruby-options: Return #t from set-LIB phase. Resent-Message-ID: From: Christopher Baines Date: Sat, 14 Jul 2018 12:10:22 +0100 Message-Id: <20180714111022.12609-2-mail@cbaines.net> In-Reply-To: <20180714111022.12609-1-mail@cbaines.net> References: <20180714111022.12609-1-mail@cbaines.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 32153@debbugs.gnu.org * gnu/packages/ruby.scm (ruby-options)[arguments]: Return #t from the set-LIB phase. --- gnu/packages/ruby.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 1602fd5d5..9a74f16c0 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -883,7 +883,8 @@ complexity.") (lambda _ ;; This is used in the Rakefile, and setting it avoids an issue ;; with running the tests. - (setenv "LIB" "options")))))) + (setenv "LIB" "options") + #t))))) (synopsis "Ruby library to parse options from *args cleanly") (description "The @code{options} library helps with parsing keyword options in Ruby -- 2.17.1