gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-777


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-777-g354ee4e
Date: Wed, 16 Dec 2015 20:45:28 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, gawk-4.1-stable has been updated
       via  354ee4e5a78dccc67817c0f223fcc072355d35be (commit)
       via  bd7c886600d3abbd233d527eff836456291620a0 (commit)
      from  edbc856be17c8d0a1b3ae8d7a2e6007f44bbb192 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=354ee4e5a78dccc67817c0f223fcc072355d35be

commit 354ee4e5a78dccc67817c0f223fcc072355d35be
Author: Arnold D. Robbins <address@hidden>
Date:   Wed Dec 16 22:44:37 2015 +0200

    Make creating the distribution work again.

diff --git a/extension/ChangeLog b/extension/ChangeLog
index ef66638..11db148 100644
--- a/extension/ChangeLog
+++ b/extension/ChangeLog
@@ -1,5 +1,10 @@
 2015-12-16         Arnold D. Robbins     <address@hidden>
 
+       * Makefile.am (EXTRA_DIST): Add ext_custom.h so that it will be
+       included in the distribution tarballs.
+
+2015-12-16         Arnold D. Robbins     <address@hidden>
+
        Make change of 2015-10-26 actually work.
 
        * ext_custom.h: New file. Move _DEFAULT_SOURCE dance to here.
diff --git a/extension/Makefile.am b/extension/Makefile.am
index ff9e907..de0513b 100644
--- a/extension/Makefile.am
+++ b/extension/Makefile.am
@@ -118,6 +118,7 @@ uninstall-recursive: uninstall-so
 EXTRA_DIST = build-aux/config.rpath  \
        ChangeLog \
        ChangeLog.0 \
+       ext_custom.h \
        fts.3 \
        README.fts \
        rwarray0.c
diff --git a/extension/Makefile.in b/extension/Makefile.in
index 868781c..629c5e6 100644
--- a/extension/Makefile.in
+++ b/extension/Makefile.in
@@ -564,6 +564,7 @@ testext_la_LIBADD = $(MY_LIBS)
 EXTRA_DIST = build-aux/config.rpath  \
        ChangeLog \
        ChangeLog.0 \
+       ext_custom.h \
        fts.3 \
        README.fts \
        rwarray0.c

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=bd7c886600d3abbd233d527eff836456291620a0

commit bd7c886600d3abbd233d527eff836456291620a0
Author: Arnold D. Robbins <address@hidden>
Date:   Wed Dec 16 22:44:18 2015 +0200

    Additional fix to two_way_open.

diff --git a/ChangeLog b/ChangeLog
index 3dd1479..3913097 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2015-12-16         Arnold D. Robbins     <address@hidden>
 
+       * io.c (two_way_open): Remove unneeded close of slave in the
+       parent.
+
+2015-12-16         Arnold D. Robbins     <address@hidden>
+
        * profile.c (pp_number): Move count into ifdef for MPFR. Avoids
        an unused variable warning if not compiling for MPFR.
 
diff --git a/io.c b/io.c
index 2249a2d..8b95b3f 100644
--- a/io.c
+++ b/io.c
@@ -1974,7 +1974,6 @@ two_way_open(const char *str, struct redirect *rp)
                case -1:
                        save_errno = errno;
                        close(master);
-                       close(slave);
                        errno = save_errno;
                        return false;
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog             |    5 +++++
 extension/ChangeLog   |    5 +++++
 extension/Makefile.am |    1 +
 extension/Makefile.in |    1 +
 io.c                  |    1 -
 5 files changed, 12 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]