diff src/build-m4.mk @ 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 7fb479d0241c
children 13be64f9f16d
line wrap: on
line diff
--- a/src/build-m4.mk	Tue Nov 05 09:05:23 2013 -0500
+++ b/src/build-m4.mk	Tue Nov 05 09:05:23 2013 -0500
@@ -14,11 +14,6 @@
     echo $($(PKG)_VERSION)
 endef
 
-ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
-define $(PKG)_BUILD
-    echo "Ignoring build-m4  for native mingw build"
-endef
-else
 define $(PKG)_BUILD
     mkdir '$(1).build'
     cd    '$(1).build' && '$(1)/configure' \
@@ -26,4 +21,3 @@
     $(MAKE) -C '$(1).build' -j '$(JOBS)'
     $(MAKE) -C '$(1).build' -j 1 install
 endef
-endif