diff src/build-autoconf.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 ce8bf9230005
children cf6f40cededb
line wrap: on
line diff
--- a/src/build-autoconf.mk	Tue Nov 05 09:05:23 2013 -0500
+++ b/src/build-autoconf.mk	Tue Nov 05 09:05:23 2013 -0500
@@ -7,7 +7,14 @@
 $(PKG)_SUBDIR   := autoconf-$($(PKG)_VERSION)
 $(PKG)_FILE     := autoconf-$($(PKG)_VERSION).tar.xz
 $(PKG)_URL      := ftp://ftp.gnu.org/pub/gnu/autoconf/$($(PKG)_FILE)
-$(PKG)_DEPS     := build-xz build-m4
+$(PKG)_DEPS     :=
+
+ifneq ($(MXE_SYSTEM),msvc)
+    ifneq ($(MXE_NATIVE_MINGW_BUILD),yes)
+        $(PKG)_DEPS += build-m4
+    endif
+    $(PKG)_DEPS += build-xz
+endif
 
 define $(PKG)_UPDATE
     echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;