From a00a54adf868246542a78ca04c188a3014f63ce8 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Tue, 27 Oct 2020 06:10:07 +0100 Subject: [PATCH] Makefile: Fix PO template generation dependencies *2po tools need the npm modules installed. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a19c08e..5f9e22b 100644 --- a/Makefile +++ b/Makefile @@ -38,10 +38,10 @@ po/POTFILES.html.in: mkdir -p $(dir $@) find src -name '*.html' > $@ -po/$(PACKAGE_NAME).html.pot: po/POTFILES.html.in +po/$(PACKAGE_NAME).html.pot: po/POTFILES.html.in $(NODE_MODULES_TEST) po/html2po -f $^ -o $@ -po/$(PACKAGE_NAME).manifest.pot: +po/$(PACKAGE_NAME).manifest.pot: $(NODE_MODULES_TEST) po/manifest2po src/manifest.json -o $@ po/$(PACKAGE_NAME).pot: po/$(PACKAGE_NAME).html.pot po/$(PACKAGE_NAME).js.pot po/$(PACKAGE_NAME).manifest.pot