pgsql: Fix parallel make when running make install before make all

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix parallel make when running make install before make all
Date: 2011-03-08 21:53:17
Message-ID: E1Px4qD-0001Xw-46@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/4502c8e1c06164adb7be526096e91e04d1844d36

Modified Files
--------------
src/interfaces/Makefile | 1 +
src/interfaces/ecpg/Makefile | 2 ++
2 files changed, 3 insertions(+), 0 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2011-03-08 22:11:17 pgsql: Assorted editing for collation documentation.
Previous Message Tom Lane 2011-03-08 21:44:28 pgsql: Add missing keywords to gram.y's unreserved_keywords list.