bash-5.1-patch-1.patch 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. diff --git a/Makefile.in b/Makefile.in
  2. --- a/Makefile.in
  3. +++ b/Makefile.in
  4. @@ -1315,6 +1315,7 @@ bashline.o: trap.h flags.h assoc.h $(BASHINCDIR)/ocache.h
  5. bashline.o: $(DEFSRC)/common.h $(GLOB_LIBSRC)/glob.h alias.h
  6. bashline.o: pcomplete.h ${BASHINCDIR}/chartypes.h input.h
  7. bashline.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h
  8. +bashline.o: ${DEFDIR}/builtext.h
  9. bracecomp.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h
  10. bracecomp.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h
  11. bracecomp.o: command.h ${BASHINCDIR}/stdc.h error.h
  12. @@ -1435,6 +1436,7 @@ builtins/evalstring.o: quit.h unwind_prot.h ${BASHINCDIR}/maxpath.h jobs.h built
  13. builtins/evalstring.o: dispose_cmd.h make_cmd.h subst.h externs.h
  14. builtins/evalstring.o: jobs.h builtins.h flags.h input.h execute_cmd.h
  15. builtins/evalstring.o: bashhist.h $(DEFSRC)/common.h pathnames.h
  16. +builtins/evalstring.o: ${DEFDIR}/builtext.h
  17. builtins/getopt.o: config.h ${BASHINCDIR}/memalloc.h
  18. builtins/getopt.o: shell.h syntax.h bashjmp.h command.h general.h xmalloc.h error.h
  19. builtins/getopt.o: variables.h arrayfunc.h conftypes.h quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h
  20. diff --git a/builtins/Makefile.in b/builtins/Makefile.in
  21. --- a/builtins/Makefile.in
  22. +++ b/builtins/Makefile.in
  23. @@ -361,7 +361,7 @@ evalstring.o: $(topdir)/dispose_cmd.h $(topdir)/make_cmd.h $(topdir)/subst.h
  24. evalstring.o: $(topdir)/externs.h $(topdir)/jobs.h $(topdir)/builtins.h
  25. evalstring.o: $(topdir)/flags.h $(topdir)/input.h $(topdir)/execute_cmd.h
  26. evalstring.o: $(topdir)/bashhist.h $(srcdir)/common.h
  27. -evalstring.o: $(topdir)/trap.h $(topdir)/redir.h ../pathnames.h
  28. +evalstring.o: $(topdir)/trap.h $(topdir)/redir.h ../pathnames.h ./builtext.h
  29. #evalstring.o: $(topdir)/y.tab.h
  30. getopt.o: ../config.h $(BASHINCDIR)/memalloc.h
  31. getopt.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/bashjmp.h $(topdir)/command.h
  32. diff --git a/patchlevel.h b/patchlevel.h
  33. --- a/patchlevel.h
  34. +++ b/patchlevel.h
  35. @@ -1,6 +1,6 @@
  36. /* patchlevel.h -- current bash patch level */
  37. -/* Copyright (C) 2001-2016 Free Software Foundation, Inc.
  38. +/* Copyright (C) 2001-2020 Free Software Foundation, Inc.
  39. This file is part of GNU Bash, the Bourne Again SHell.
  40. @@ -25,6 +25,6 @@
  41. regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
  42. looks for to find the patch level (for the sccs version string). */
  43. -#define PATCHLEVEL 0
  44. +#define PATCHLEVEL 1
  45. #endif /* _PATCHLEVEL_H_ */