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:54:59 -0800 |
commit | 95fae739af68b27c5c555ffe10c4c98f2a6a3cdd (patch) | |
tree | 097b1d2903c00e8d2e02255e8faf2d1ae4113550 /src | |
parent | ca01a6748d0bfb594128833fec6a64e6d092d37f (diff) | |
download | postgresql-95fae739af68b27c5c555ffe10c4c98f2a6a3cdd.tar.gz postgresql-95fae739af68b27c5c555ffe10c4c98f2a6a3cdd.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 bc781862855..b13d9879d21 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -391,7 +391,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 |