mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
cebcf3533a
* gnu/packages/patches/zsh-egrep-failing-test.patch: New file. * gnu/packages/shells.scm (zsh): Patch it. * gnu/local.mk (dist_patch_DATA): Register it. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
11 lines
397 B
Diff
11 lines
397 B
Diff
--- a/Test/E01options.ztst 2023-03-30 21:34:12.372309112 +0200
|
|
+++ b/Test/E01options.ztst 2023-03-30 21:34:33.212335339 +0200
|
|
@@ -649,7 +649,7 @@
|
|
>noktarg1
|
|
>0 1
|
|
|
|
- showopt() { setopt | egrep 'localoptions|ksharrays'; }
|
|
+ showopt() { setopt | grep -E 'localoptions|ksharrays'; }
|
|
f1() { setopt localoptions ksharrays; showopt }
|
|
f2() { setopt ksharrays; showopt }
|
|
setopt kshoptionprint
|