summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2016-11-13 16:52:38 -0800
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2016-11-13 16:52:38 -0800
commit5ca7e7cffc53b2378d3d9eb5168458935ca21627 (patch)
tree701bb640236cf08a5bd9c9c23c6a5bcbfe3f723e /Makefile
parentc5223be4341ec8c679dad64c8c7bd3ce315d06cc (diff)
Rewrite archive script into Python
Perl version needed Archive::Zip that for some reason is not installed on WSL by default. Use this as an opportunity to remove the last Perl script.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 673aaee..17b8b66 100644
--- a/Makefile
+++ b/Makefile
@@ -82,7 +82,7 @@ docs: docs/quickstart.html docs/manual.html
build/pugixml-%: .FORCE | $(RELEASE)
@mkdir -p $(BUILD)
- perl tests/archive.pl $@ $|
+ python tests/archive.py $@ pugixml-$(VERSION) $|
$(EXECUTABLE): $(OBJECTS)
$(CXX) $(OBJECTS) $(LDFLAGS) -o $@