$ cd /usr/src/pgsql/src
-$ gmake all >& make.log &
+$ gmake all > make.log 2>&1 &
$ tail -f make.log
be specified on the command line using the COPT variable.
For example, typing
-$ gmake COPT="-g" all >& make.log &
+$ gmake COPT="-g" all > make.log 2>&1 &
would invoke your compiler's option in all steps of the
build. See src/Makefile.global.in for further details.
Install the program. Type
$ cd /usr/src/pgsql/src
-$ gmake install >& make.install.log &
+$ gmake install > make.install.log 2>&1 &
$ tail -f make.install.log