comparison src/apr-util.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 13be64f9f16d
comparison
equal deleted inserted replaced
3215:03873a95c76a 3216:11f8ec654cd4
25 --without-sqlite2 \ 25 --without-sqlite2 \
26 --without-sqlite3 \ 26 --without-sqlite3 \
27 --with-apr='$(HOST_PREFIX)' \ 27 --with-apr='$(HOST_PREFIX)' \
28 CFLAGS=-D_WIN32_WINNT=0x0500 28 CFLAGS=-D_WIN32_WINNT=0x0500
29 $(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= man_MANS= 29 $(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= man_MANS=
30 $(LN_SF) '$(HOST_BINDIR)/apu-1-config' '$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)apu-1-config' 30 if [ $(MXE_NATIVE_BUILD) = no ]; then \
31 $(INSTALL) -m755 '$(HOST_BINDIR)/apu-1-config' '$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)apu-1-config'; \
32 fi
31 endef 33 endef