From 4dd7010c007c89497b0b684ee4dbf699c2be1ee4 Mon Sep 17 00:00:00 2001 From: Peter Foley Date: Mon, 25 Mar 2013 21:27:10 -0400 Subject: don't build postgresql just to parse the makefiles When running module-deps.pl postgresql gets built just so that libpq-flags.mk can be included. Since we already have all the necessary libraries, add them explicitly and avoid this. Change-Id: Icd94fc215ecb26c95f9ae3c14625bf819bf3c5c3 --- postgresql/ExternalProject_postgresql.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'postgresql') diff --git a/postgresql/ExternalProject_postgresql.mk b/postgresql/ExternalProject_postgresql.mk index 5fef28ecaaf6..19c10e313c57 100644 --- a/postgresql/ExternalProject_postgresql.mk +++ b/postgresql/ExternalProject_postgresql.mk @@ -44,8 +44,7 @@ $(call gb_ExternalProject_get_state_target,postgresql,build) : EXTRA_LDAP_LIBS="-llber -lssl3 -lsmime3 -lnss3 -lnssutil3 -lplds4 -lplc4 -lnspr4" \ ) \ && cd src/interfaces/libpq \ - && MAKEFLAGS= && $(MAKE) all-static-lib libpq-flags.mk \ - ) + && MAKEFLAGS= && $(MAKE) all-static-lib) endif -- cgit