diff Makefile.in @ 4236:49430638c5bd

build-lzip: New package.
author John W. Eaton <jwe@octave.org>
date Fri, 28 Oct 2016 10:06:54 -0400
parents b9703b830bf2
children 724749afb8b5
line wrap: on
line diff
--- a/Makefile.in	Fri Oct 21 15:25:03 2016 -0400
+++ b/Makefile.in	Fri Oct 28 10:06:54 2016 -0400
@@ -476,10 +476,11 @@
     $(if $(filter %.tgz,     $(1)),$(3) xzf '$(1)', \
     $(if $(filter %.tar.gz,  $(1)),$(3) xzf '$(1)', \
     $(if $(filter %.tar.bz2, $(1)),$(3) xjf '$(1)', \
+    $(if $(filter %.tar.lz, $(1)),$(3) xaf '$(1)', \
     $(if $(filter %.tar.lzma,$(1)),xz -dc -F lzma '$(1)' | $(3) xf -, \
     $(if $(filter %.tar.xz,$(1)),xz -dc '$(1)' | $(3) xf -, \
     $(if $(filter %.zip,     $(1)),unzip -q '$(1)', \
-    $(error Unknown archive format for $(2): $(1))))))))
+    $(error Unknown archive format for $(2): $(1)))))))))
 
 UNPACK_PKG_ARCHIVE = \
     $(if $(value $(1)_FILE),$(call UNPACK_ARCHIVE,$(PKG_DIR)/$($(1)_FILE),$(1),$(2)),true)