diff Makefile.in @ 3286:29e227f8bef6

Don't depend on build-m4/build-xz for MSVC and native-MinGW. * Makefile.in: Don't depend on build-m4 in native-MinGW. Don't depend on build-xz for MSVC, add xz to REQUIREMENTS. * src/build-autoconf.mk: Likewise. * src/build-m4.mk: Remove native-MinGW pass-through.
author Michael Goffioul <michael.goffioul@gmail.com>
date Tue, 05 Nov 2013 09:05:23 -0500
parents 16321a166cc4
children fda357ce9f64
line wrap: on
line diff
--- a/Makefile.in	Tue Nov 05 09:05:23 2013 -0500
+++ b/Makefile.in	Tue Nov 05 09:05:23 2013 -0500
@@ -160,6 +160,12 @@
 # use the msys m4 in native mingw
 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
   REQUIREMENTS += m4
+  BUILD_TOOLS := $(filter-out build-m4, $(BUILD_TOOLS))
+endif
+# Use msys xz under MSVC.
+ifeq ($(MXE_SYSTEM),msvc)
+  REQUIREMENTS += xz
+  BUILD_TOOLS := $(filter-out build-xz, $(BUILD_TOOLS))
 endif