From bd7c886600d3abbd233d527eff836456291620a0 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Wed, 16 Dec 2015 22:44:18 +0200 Subject: Additional fix to two_way_open. --- ChangeLog | 5 +++++ io.c | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3dd14799..3913097e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-12-16 Arnold D. Robbins + + * io.c (two_way_open): Remove unneeded close of slave in the + parent. + 2015-12-16 Arnold D. Robbins * profile.c (pp_number): Move count into ifdef for MPFR. Avoids diff --git a/io.c b/io.c index 2249a2d8..8b95b3f1 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; -- cgit v1.2.3 From 354ee4e5a78dccc67817c0f223fcc072355d35be Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Wed, 16 Dec 2015 22:44:37 +0200 Subject: Make creating the distribution work again. --- extension/ChangeLog | 5 +++++ extension/Makefile.am | 1 + extension/Makefile.in | 1 + 3 files changed, 7 insertions(+) diff --git a/extension/ChangeLog b/extension/ChangeLog index ef666386..11db1488 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -1,3 +1,8 @@ +2015-12-16 Arnold D. Robbins + + * Makefile.am (EXTRA_DIST): Add ext_custom.h so that it will be + included in the distribution tarballs. + 2015-12-16 Arnold D. Robbins Make change of 2015-10-26 actually work. diff --git a/extension/Makefile.am b/extension/Makefile.am index ff9e9073..de0513b0 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 868781ca..629c5e6b 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 -- cgit v1.2.3