diff options
author | Noah Misch <noah@leadboat.com> | 2018-12-31 13:53:05 -0800 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2018-12-31 13:55:04 -0800 |
commit | e7ebc8c285f12b0f50924a69627a40050c85a1e2 (patch) | |
tree | 04976191cd9de74cb651cad3de397a8892b36336 /src | |
parent | 7c97b0f55e751297a5e30c0de28a779b945aa706 (diff) | |
download | postgresql-e7ebc8c285f12b0f50924a69627a40050c85a1e2.tar.gz postgresql-e7ebc8c285f12b0f50924a69627a40050c85a1e2.zip |
Send EXTRA_INSTALL errors to install.log, not stderr.
We already redirected other temp-install stderr and all temp-install
stdout in this way. Back-patch to v10, like the next commit.
Discussion: https://postgr.es/m/20181224221601.GA3227827@rfd.leadboat.com
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 34168a06500..3e56ef013b4 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -345,7 +345,7 @@ ifeq ($(MAKELEVEL),0) $(MKDIR_P) '$(abs_top_builddir)'/tmp_install/log $(MAKE) -C '$(top_builddir)' DESTDIR='$(abs_top_builddir)'/tmp_install install >'$(abs_top_builddir)'/tmp_install/log/install.log 2>&1 endif - $(if $(EXTRA_INSTALL),for extra in $(EXTRA_INSTALL); do $(MAKE) -C '$(top_builddir)'/$$extra DESTDIR='$(abs_top_builddir)'/tmp_install install >>'$(abs_top_builddir)'/tmp_install/log/install.log || exit; done) + $(if $(EXTRA_INSTALL),for extra in $(EXTRA_INSTALL); do $(MAKE) -C '$(top_builddir)'/$$extra DESTDIR='$(abs_top_builddir)'/tmp_install install >>'$(abs_top_builddir)'/tmp_install/log/install.log 2>&1 || exit; done) endif endif |