You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.6 KiB

  1. BASH PATCH REPORT
  2. =================
  3. Bash-Release: 5.1
  4. Patch-ID: bash51-001
  5. Bug-Reported-by: Fazal Majid <fazal@majid.org>
  6. Bug-Reference-ID: <DEAB7D2C-C626-450C-B2E5-281AFF2D26D4@majid.org>
  7. Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2020-12/msg00000.html
  8. Bug-Description:
  9. There is a missing dependency on a constructed file, which can cause highly
  10. parellel builds to fail.
  11. Patch (apply with `patch -p0'):
  12. --- a/Makefile.in
  13. +++ b/Makefile.in
  14. @@ -1315,6 +1315,7 @@ bashline.o: trap.h flags.h assoc.h $(BAS
  15. bashline.o: $(DEFSRC)/common.h $(GLOB_LIBSRC)/glob.h alias.h
  16. bashline.o: pcomplete.h ${BASHINCDIR}/chartypes.h input.h
  17. bashline.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h
  18. +bashline.o: ${DEFDIR}/builtext.h
  19. bracecomp.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h
  20. bracecomp.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h
  21. bracecomp.o: command.h ${BASHINCDIR}/stdc.h error.h
  22. @@ -1435,6 +1436,7 @@ builtins/evalstring.o: quit.h unwind_pro
  23. builtins/evalstring.o: dispose_cmd.h make_cmd.h subst.h externs.h
  24. builtins/evalstring.o: jobs.h builtins.h flags.h input.h execute_cmd.h
  25. builtins/evalstring.o: bashhist.h $(DEFSRC)/common.h pathnames.h
  26. +builtins/evalstring.o: ${DEFDIR}/builtext.h
  27. builtins/getopt.o: config.h ${BASHINCDIR}/memalloc.h
  28. builtins/getopt.o: shell.h syntax.h bashjmp.h command.h general.h xmalloc.h error.h
  29. builtins/getopt.o: variables.h arrayfunc.h conftypes.h quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h
  30. --- a/builtins/Makefile.in
  31. +++ b/builtins/Makefile.in
  32. @@ -361,7 +361,7 @@ evalstring.o: $(topdir)/dispose_cmd.h $(
  33. evalstring.o: $(topdir)/externs.h $(topdir)/jobs.h $(topdir)/builtins.h
  34. evalstring.o: $(topdir)/flags.h $(topdir)/input.h $(topdir)/execute_cmd.h
  35. evalstring.o: $(topdir)/bashhist.h $(srcdir)/common.h
  36. -evalstring.o: $(topdir)/trap.h $(topdir)/redir.h ../pathnames.h
  37. +evalstring.o: $(topdir)/trap.h $(topdir)/redir.h ../pathnames.h ./builtext.h
  38. #evalstring.o: $(topdir)/y.tab.h
  39. getopt.o: ../config.h $(BASHINCDIR)/memalloc.h
  40. getopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h $(topdir)/command.h
  41. --- a/patchlevel.h
  42. +++ b/patchlevel.h
  43. @@ -1,6 +1,6 @@
  44. /* patchlevel.h -- current bash patch level */
  45. -/* Copyright (C) 2001-2016 Free Software Foundation, Inc.
  46. +/* Copyright (C) 2001-2020 Free Software Foundation, Inc.
  47. This file is part of GNU Bash, the Bourne Again SHell.
  48. @@ -25,6 +25,6 @@
  49. regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
  50. looks for to find the patch level (for the sccs version string). */
  51. -#define PATCHLEVEL 0
  52. +#define PATCHLEVEL 1
  53. #endif /* _PATCHLEVEL_H_ */