Skip to content

Commit 0089c30

Browse files
committed
Don't unset MAKEFLAGS in non-GNU Makefile.
It's useful to be able to pass down options like -s and -j. Back-patch to 9.5, like commit a76200d. Discussion: https://postgr.es/m/CA%2BhUKG%2Be1M8-BbL%3DPqhTp6oO6XPO6%2Bs9WGQMLfbuZ%3DG9CtzyXg%40mail.gmail.com
1 parent a2dec37 commit 0089c30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ all check install installdirs installcheck installcheck-parallel uninstall clean
3333
\
3434
if [ x"$${GMAKE+set}" = xset ]; then \
3535
echo "Using GNU make found at $${GMAKE}"; \
36-
unset MAKEFLAGS; unset MAKELEVEL; \
36+
unset MAKELEVEL; \
3737
$${GMAKE} $@ ; \
3838
else \
3939
echo "You must use GNU make to build PostgreSQL." ; \

0 commit comments

Comments
 (0)