From aac9547683cddb963ceb6d72d8b03e456970b21e Mon Sep 17 00:00:00 2001 From: emkael Date: Thu, 15 Jun 2017 12:42:46 +0200 Subject: Depending on the Python module instead of the standalone executable for HTML pages minimization --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ab8df76..d86fb89 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ tmpfiles := $(patsubst %.html,%.html.tmp,$(wildcard http/*.html)) rankfiles := $(patsubst %.html,%.html.ed,$(wildcard http/*.html)) $(tmpfiles): - htmlmin $(patsubst %.tmp,%,$@) $@ + python -m htmlmin.command $(patsubst %.tmp,%,$@) $@ mv $@ $(patsubst %.tmp,%,$@) $(rankfiles): -- cgit v1.2.3