From 5a6eb80ae820be3452a9577d18dd7fa355c9a740 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sat, 10 Oct 2009 09:43:13 +0200 Subject: [PATCH] Avoid use of $* in Makefile since it's problematic Thanks to Ben Pfaff for reporting this. --- po/automake.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/automake.mk b/po/automake.mk index 56715e1e..dbe86dc8 100644 --- a/po/automake.mk +++ b/po/automake.mk @@ -23,7 +23,8 @@ $(POTFILE): $(TRANSLATABLE_FILES) $(POFILES): $(POTFILE) - $(MSGMERGE) $(top_srcdir)/$* $< -o $@ + $(MSGMERGE) $(top_srcdir)/$@ $< -o $@ + .po.gmo: @$(MKDIR_P) `dirname $@` -- 2.30.2