mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
Fix parallel make when running make install before make all
In addition to the all-foo-recurse: all-bar-recurse dependencies that constraint the order of the rule execution, we need install-foo-recurse: install-bar-recurse dependencies in case one runs make install without a make all first, as some people apparently do.
This commit is contained in:
parent
3f7d24da16
commit
4502c8e1c0
@ -17,3 +17,4 @@ SUBDIRS = libpq ecpg
|
||||
$(recurse)
|
||||
|
||||
all-ecpg-recurse: all-libpq-recurse
|
||||
install-ecpg-recurse: install-libpq-recurse
|
||||
|
@ -8,6 +8,8 @@ $(recurse)
|
||||
|
||||
all-compatlib-recurse: all-ecpglib-recurse
|
||||
all-ecpglib-recurse: all-pgtypeslib-recurse
|
||||
install-compatlib-recurse: install-ecpglib-recurse
|
||||
install-ecpglib-recurse: install-pgtypeslib-recurse
|
||||
|
||||
clean distclean maintainer-clean:
|
||||
$(MAKE) -C test clean
|
||||
|
Loading…
Reference in New Issue
Block a user