From: John Darrington Date: Sat, 10 Oct 2009 07:43:13 +0000 (+0200) Subject: Avoid use of $* in Makefile since it's problematic X-Git-Tag: fc11-i386-build18^0 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=5a6eb80ae820be3452a9577d18dd7fa355c9a740 Avoid use of $* in Makefile since it's problematic Thanks to Ben Pfaff for reporting this. --- 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 $@`