From 126d074f2db8f59d7fa75f58fb00eed6b905aacf Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 16 Oct 2018 13:03:35 +0200 Subject: [PATCH] examples: hello-java: Fix 'make' failure. * gettext-tools/examples/hello-java/po/Makefile.am (stamp-po): Fix syntax error. --- gettext-tools/examples/hello-java/po/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gettext-tools/examples/hello-java/po/Makefile.am b/gettext-tools/examples/hello-java/po/Makefile.am index c651bc79e..b8cf04bfe 100644 --- a/gettext-tools/examples/hello-java/po/Makefile.am +++ b/gettext-tools/examples/hello-java/po/Makefile.am @@ -94,7 +94,7 @@ all-local: stamp-po # $(POFILES) has been designed to not touch files that don't need to be # changed. stamp-po: $(srcdir)/$(DOMAIN).pot - test -z "$(PROPERTIESFILES)" || $(MAKE) $(PROPERTIESFILES) \ + test ! -f $(srcdir)/$(DOMAIN).pot || \ $(MAKE) update-properties @test ! -f $(srcdir)/$(DOMAIN).pot || { \ echo "touch stamp-po" && \ -- 2.47.3