]> git.ipfire.org Git - ipfire-2.x.git/blame - src/patches/bash/bash51-001
Merge branch 'next'
[ipfire-2.x.git] / src / patches / bash / bash51-001
CommitLineData
f9f6cbd8
AB
1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 5.1
5Patch-ID: bash51-001
6
7Bug-Reported-by: Fazal Majid <fazal@majid.org>
8Bug-Reference-ID: <DEAB7D2C-C626-450C-B2E5-281AFF2D26D4@majid.org>
9Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2020-12/msg00000.html
10
11Bug-Description:
12
13There is a missing dependency on a constructed file, which can cause highly
14parellel builds to fail.
15
16Patch (apply with `patch -p0'):
17
18*** ../bash-5.1-patched/Makefile.in 2020-12-04 09:51:19.000000000 -0500
19--- Makefile.in 2020-12-16 11:28:36.000000000 -0500
20***************
21*** 1316,1319 ****
22--- 1316,1320 ----
23 bashline.o: pcomplete.h ${BASHINCDIR}/chartypes.h input.h
24 bashline.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h
25+ bashline.o: ${DEFDIR}/builtext.h
26 bracecomp.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h
27 bracecomp.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h
28***************
29*** 1436,1439 ****
30--- 1437,1441 ----
31 builtins/evalstring.o: jobs.h builtins.h flags.h input.h execute_cmd.h
32 builtins/evalstring.o: bashhist.h $(DEFSRC)/common.h pathnames.h
33+ builtins/evalstring.o: ${DEFDIR}/builtext.h
34 builtins/getopt.o: config.h ${BASHINCDIR}/memalloc.h
35 builtins/getopt.o: shell.h syntax.h bashjmp.h command.h general.h xmalloc.h error.h
36
37*** ../bash-5.1-patched/builtins/Makefile.in 2019-07-25 08:03:45.000000000 -0400
38--- builtins/Makefile.in 2020-12-16 11:29:29.000000000 -0500
39***************
40*** 362,366 ****
41 evalstring.o: $(topdir)/flags.h $(topdir)/input.h $(topdir)/execute_cmd.h
42 evalstring.o: $(topdir)/bashhist.h $(srcdir)/common.h
43! evalstring.o: $(topdir)/trap.h $(topdir)/redir.h ../pathnames.h
44 #evalstring.o: $(topdir)/y.tab.h
45 getopt.o: ../config.h $(BASHINCDIR)/memalloc.h
46--- 362,366 ----
47 evalstring.o: $(topdir)/flags.h $(topdir)/input.h $(topdir)/execute_cmd.h
48 evalstring.o: $(topdir)/bashhist.h $(srcdir)/common.h
49! evalstring.o: $(topdir)/trap.h $(topdir)/redir.h ../pathnames.h ./builtext.h
50 #evalstring.o: $(topdir)/y.tab.h
51 getopt.o: ../config.h $(BASHINCDIR)/memalloc.h
52
53*** ../bash-5.1/patchlevel.h 2020-06-22 14:51:03.000000000 -0400
54--- patchlevel.h 2020-10-01 11:01:28.000000000 -0400
55***************
56*** 1,5 ****
57 /* patchlevel.h -- current bash patch level */
58
59! /* Copyright (C) 2001-2016 Free Software Foundation, Inc.
60
61 This file is part of GNU Bash, the Bourne Again SHell.
62--- 1,5 ----
63 /* patchlevel.h -- current bash patch level */
64
65! /* Copyright (C) 2001-2020 Free Software Foundation, Inc.
66
67 This file is part of GNU Bash, the Bourne Again SHell.
68***************
69*** 26,30 ****
70 looks for to find the patch level (for the sccs version string). */
71
72! #define PATCHLEVEL 0
73
74 #endif /* _PATCHLEVEL_H_ */
75--- 26,30 ----
76 looks for to find the patch level (for the sccs version string). */
77
78! #define PATCHLEVEL 1
79
80 #endif /* _PATCHLEVEL_H_ */