diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-10-04 07:57:27 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-10-04 08:54:55 +0200 |
commit | 5c31e981bbed2c1e4528274363723a230b9f21f9 (patch) | |
tree | 783120dc30f8100bb308418e0a01c1037dac66e0 | |
parent | 92a312dc86a3e75e465ef94edc1a742a12424be8 (diff) | |
download | guix-5c31e981bbed2c1e4528274363723a230b9f21f9.tar guix-5c31e981bbed2c1e4528274363723a230b9f21f9.tar.gz |
gnu: ruby-nokogumbo: Move "build-gemspec" phase after "unpack".
* gnu/packages/ruby.scm (ruby-nokogumbo)[arguments]: Move
"build-gemspec" phase after "unpack".
-rw-r--r-- | gnu/packages/ruby.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 2b5938b477..a80b8f7739 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2608,7 +2608,7 @@ multibyte strings, internationalization, time zones, and testing.") (ice-9 rdelim)) #:phases (modify-phases %standard-phases - (add-before 'build 'build-gemspec + (add-after 'unpack 'build-gemspec (lambda _ (substitute* "Rakefile" ;; Build Makefile even without a copy of gumbo-parser sources |