perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / shell / bash / patches / bash52-020.patch
blob0e76741e9d79e29fcef9d4bf6699c3fecc71b8db
1 BASH PATCH REPORT
2 =================
4 Bash-Release: 5.2
5 Patch-ID: bash52-020
7 Bug-Reported-by: Dima Korobskiy <dkroot2@gmail.com>
8 Bug-Reference-ID: <16664c2d-40ec-df33-b932-83db06e39a82@gmail.com>
9 Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2023-08/msg00125.html
11 Bug-Description:
13 The parser did not allow `time' to appear as the first reserved word in a
14 command substitution.
16 Patch (apply with `patch -p0'):
18 *** ../bash-5.2-patched/parse.y Tue Dec 13 12:53:21 2022
19 --- parse.y Fri Sep 1 10:36:28 2023
20 ***************
21 *** 3151,3154 ****
22 --- 3151,3155 ----
23 case TIMEOPT: /* time -p time pipeline */
24 case TIMEIGN: /* time -p -- ... */
25 + case DOLPAREN:
26 return 1;
27 default:
28 *** ../bash-5.2-patched/y.tab.c Tue Dec 13 12:53:21 2022
29 --- y.tab.c Fri Sep 1 10:36:44 2023
30 ***************
31 *** 5466,5469 ****
32 --- 5466,5470 ----
33 case TIMEOPT: /* time -p time pipeline */
34 case TIMEIGN: /* time -p -- ... */
35 + case DOLPAREN:
36 return 1;
37 default:
39 *** ../bash-5.2/patchlevel.h 2020-06-22 14:51:03.000000000 -0400
40 --- patchlevel.h 2020-10-01 11:01:28.000000000 -0400
41 ***************
42 *** 26,30 ****
43 looks for to find the patch level (for the sccs version string). */
45 ! #define PATCHLEVEL 19
47 #endif /* _PATCHLEVEL_H_ */
48 --- 26,30 ----
49 looks for to find the patch level (for the sccs version string). */
51 ! #define PATCHLEVEL 20
53 #endif /* _PATCHLEVEL_H_ */