From 33f234623f115d249426de890d11a50cab966b31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Sat, 8 Sep 2018 19:10:41 +0300 Subject: [PATCH] Use short options for consistency --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1f11847..2f646ce 100644 --- a/Makefile +++ b/Makefile @@ -15,19 +15,19 @@ sshwot-export-known-hosts: $(SSHWOT_EXPORT_KNOWN_HOSTS_MAIN) $(SSHWOT_EXPORT_KNO mkdir -p build/$@ cp $(SSHWOT_EXPORT_KNOWN_HOSTS_DEPS) build/$@/ cp $(SSHWOT_EXPORT_KNOWN_HOSTS_MAIN) build/$@/__main__.py - python3 -m zipapp --output $@ -p "/usr/bin/env python3" build/$@ + python3 -m zipapp -o $@ -p "/usr/bin/env python3" build/$@ sshwot-filter: $(SSHWOT_FILTER_MAIN) $(SSHWOT_FILTER_DEPS) mkdir -p build/$@ cp $(SSHWOT_FILTER_DEPS) build/$@/ cp $(SSHWOT_FILTER_MAIN) build/$@/__main__.py - python3 -m zipapp --output $@ -p "/usr/bin/env python3" build/$@ + python3 -m zipapp -o $@ -p "/usr/bin/env python3" build/$@ sshwot-verify: $(SSHWOT_VERIFY_MAIN) $(SSHWOT_VERIFY_DEPS) mkdir -p build/$@ cp $(SSHWOT_VERIFY_DEPS) build/$@/ cp $(SSHWOT_VERIFY_MAIN) build/$@/__main__.py - python3 -m zipapp --output $@ -p "/usr/bin/env python3" build/$@ + python3 -m zipapp -o $@ -p "/usr/bin/env python3" build/$@ .PHONY: all clean distclean buildclean