# HG changeset patch # User John Donoghue # Date 1374411453 14400 # Node ID e0beeba4490fc7d95940d95be6e345075285334a # Parent 591b3d68b43ef8bf0cf163d01d289283a1d58ea5 Use bsdcpio to extract proj files in native mingw * Makefile.in: add filter rule for untaring proj-(VERSION).tar.gz, add qrupdate_VERSION to rule for unpacking qrupdate. diff -r 591b3d68b43e -r e0beeba4490f Makefile.in --- a/Makefile.in Sat Jul 20 22:41:16 2013 -0400 +++ b/Makefile.in Sun Jul 21 08:57:33 2013 -0400 @@ -290,14 +290,15 @@ ifeq ($(MXE_NATIVE_MINGW_BUILD),yes) UNPACK_ARCHIVE = \ - $(if $(filter %rupdate-1.1.2.tar.gz, $(1)),bsdcpio -id < '$(1)', \ + $(if $(filter %rupdate-$(qrupdate_VERSION).tar.gz, $(1)),bsdcpio -id < '$(1)', \ + $(if $(filter %roj-$(proj_VERSION).tar.gz, $(1)),bsdcpio -id < '$(1)', \ $(if $(filter %.tgz, $(1)),tar xzf '$(1)', \ $(if $(filter %.tar.gz, $(1)),tar xzf '$(1)', \ $(if $(filter %.tar.bz2, $(1)),tar xjf '$(1)', \ $(if $(filter %.tar.lzma,$(1)),xz -dc -F lzma '$(1)' | tar xf -, \ $(if $(filter %.tar.xz,$(1)),xz -dc '$(1)' | tar xf -, \ $(if $(filter %.zip, $(1)),unzip -q '$(1)', \ - $(error Unknown archive format for $(2): $(1))))))))) + $(error Unknown archive format for $(2): $(1)))))))))) else UNPACK_ARCHIVE = \ $(if $(filter %.tgz, $(1)),tar xzf '$(1)', \