comparison src/postgresql.mk @ 3216:11f8ec654cd4

Avoid copying or linking files that are the same when doing native build Prefer $(INSTALL) over $(LN_SF).
author John W. Eaton <jwe@octave.org>
date Wed, 07 Aug 2013 00:41:50 -0400
parents 5ef49fb3299d
children 166294cad9f0
comparison
equal deleted inserted replaced
3215:03873a95c76a 3216:11f8ec654cd4
78 --without-libxslt \ 78 --without-libxslt \
79 --without-zlib \ 79 --without-zlib \
80 --with-system-tzdata=/dev/null 80 --with-system-tzdata=/dev/null
81 $(MAKE) -C '$(1).native'/src/port -j '$(JOBS)' 81 $(MAKE) -C '$(1).native'/src/port -j '$(JOBS)'
82 $(MAKE) -C '$(1).native'/src/bin/pg_config -j '$(JOBS)' install 82 $(MAKE) -C '$(1).native'/src/bin/pg_config -j '$(JOBS)' install
83 $(LN_SF) '$(HOST_BINDIR)/pg_config' '$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)pg_config' 83 if [ $(MXE_NATIVE_BUILD) = no ]; then \
84 $(INSTALL) -m755 '$(HOST_BINDIR)/pg_config' '$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)pg_config'; \
85 fi
84 endef 86 endef