diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-23 02:07:46 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-23 04:41:51 -0400 |
commit | dcd5ea699fe4f7e8c1f53933e4d0e027c1a0a512 (patch) | |
tree | 188989d134882eae853153f8dc2ff7c176986e78 /gnu/packages/gawk.scm | |
parent | 21398edae237f88bde67705ceca1f93c5ad81f49 (diff) | |
download | patches-dcd5ea699fe4f7e8c1f53933e4d0e027c1a0a512.tar patches-dcd5ea699fe4f7e8c1f53933e4d0e027c1a0a512.tar.gz |
gnu: gawk: Return #t from all phases.
* gnu/packages/gawk.scm (gawk)[arguments]: Return #t from
the 'set-shell-file-name' phase.
Diffstat (limited to 'gnu/packages/gawk.scm')
-rw-r--r-- | gnu/packages/gawk.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/gawk.scm b/gnu/packages/gawk.scm index 6b1d1af10b..487020ad3b 100644 --- a/gnu/packages/gawk.scm +++ b/gnu/packages/gawk.scm @@ -55,7 +55,9 @@ '((substitute* "extension/Makefile.in" (("^.*: check-for-shared-lib-support" match) (string-append "### " match)))) - '())))) + '()) + + #t))) (add-before 'check 'adjust-test-infrastructure (lambda _ |