|
|
|
@ -2,11 +2,11 @@ This patch documents two implemented and classical command
|
|
|
|
|
line options "-v" and "-x". It is derived from Debian GNU/Linux.
|
|
|
|
|
|
|
|
|
|
Index: doc/bash.1
|
|
|
|
|
--- doc/bash.1.orig 2014-02-06 15:03:52.000000000 +0100
|
|
|
|
|
+++ doc/bash.1 2014-03-01 12:28:01.673970389 +0100
|
|
|
|
|
@@ -117,6 +117,12 @@
|
|
|
|
|
This option allows the positional parameters to be set
|
|
|
|
|
when invoking an interactive shell.
|
|
|
|
|
--- doc/bash.1.orig 2019-01-02 15:14:30.000000000 +0100
|
|
|
|
|
+++ doc/bash.1 2019-01-07 20:08:18.484696000 +0100
|
|
|
|
|
@@ -122,6 +122,12 @@
|
|
|
|
|
when invoking an interactive shell or when reading input
|
|
|
|
|
through a pipe.
|
|
|
|
|
.TP
|
|
|
|
|
+.B \-v
|
|
|
|
|
+Print shell input lines as they are read.
|
|
|
|
@ -23,8 +23,8 @@ Index: doc/bash.1
|
|
|
|
|
This adds the OpenPKG packaging brand.
|
|
|
|
|
|
|
|
|
|
Index: version.c
|
|
|
|
|
--- version.c.orig 2013-03-10 18:20:13.000000000 +0100
|
|
|
|
|
+++ version.c 2014-03-01 12:28:01.673970389 +0100
|
|
|
|
|
--- version.c.orig 2019-01-02 15:39:37.000000000 +0100
|
|
|
|
|
+++ version.c 2019-01-07 20:08:18.484964000 +0100
|
|
|
|
|
@@ -83,7 +83,7 @@
|
|
|
|
|
show_shell_version (extended)
|
|
|
|
|
int extended;
|
|
|
|
@ -40,9 +40,9 @@ Index: version.c
|
|
|
|
|
Ensure that Autoconf and friends are not run.
|
|
|
|
|
|
|
|
|
|
Index: Makefile.in
|
|
|
|
|
--- Makefile.in.orig 2014-03-01 12:28:01.673970000 +0100
|
|
|
|
|
+++ Makefile.in 2014-03-01 12:28:12.774181498 +0100
|
|
|
|
|
@@ -728,7 +728,6 @@
|
|
|
|
|
--- Makefile.in.orig 2018-05-25 14:47:09.000000000 +0200
|
|
|
|
|
+++ Makefile.in 2019-01-07 20:08:18.485395000 +0100
|
|
|
|
|
@@ -775,7 +775,6 @@
|
|
|
|
|
|
|
|
|
|
# comment out for distribution
|
|
|
|
|
$(srcdir)/configure: $(srcdir)/configure.ac $(srcdir)/aclocal.m4 $(srcdir)/config.h.in
|
|
|
|
@ -57,9 +57,9 @@ Fix Bash getcwd(3) run-time issue seen on Solaris where size argument
|
|
|
|
|
of 0 does not malloc buffer as expected by Bash code.
|
|
|
|
|
|
|
|
|
|
Index: builtins/common.c
|
|
|
|
|
--- builtins/common.c.orig 2012-02-15 22:44:07.000000000 +0100
|
|
|
|
|
+++ builtins/common.c 2014-03-01 12:28:01.684059100 +0100
|
|
|
|
|
@@ -553,10 +553,11 @@
|
|
|
|
|
--- builtins/common.c.orig 2018-07-12 22:51:23.000000000 +0200
|
|
|
|
|
+++ builtins/common.c 2019-01-07 20:08:18.485639000 +0100
|
|
|
|
|
@@ -569,10 +569,11 @@
|
|
|
|
|
|
|
|
|
|
if (the_current_working_directory == 0)
|
|
|
|
|
{
|
|
|
|
@ -79,8 +79,8 @@ Index: builtins/common.c
|
|
|
|
|
Fix building under Linux.
|
|
|
|
|
|
|
|
|
|
Index: externs.h
|
|
|
|
|
--- externs.h.orig 2014-01-02 20:58:20.000000000 +0100
|
|
|
|
|
+++ externs.h 2014-03-01 12:28:01.684059100 +0100
|
|
|
|
|
--- externs.h.orig 2018-12-08 17:15:54.000000000 +0100
|
|
|
|
|
+++ externs.h 2019-01-07 20:08:18.485852000 +0100
|
|
|
|
|
@@ -25,6 +25,7 @@
|
|
|
|
|
# define _EXTERNS_H_
|
|
|
|
|
|
|
|
|
@ -88,5 +88,5 @@ Index: externs.h
|
|
|
|
|
+#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
/* Functions from expr.c. */
|
|
|
|
|
extern intmax_t evalexp __P((char *, int *));
|
|
|
|
|
#define EXP_EXPANDED 0x01
|
|
|
|
|
|
|
|
|
|