From bd370325091826adfad3d0ba9ca6853137ca17a5 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Tue, 24 Feb 2009 14:40:15 +0000 Subject: potentially fix parallel build by not using the same temporary file for all jobs --- po/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/Makefile b/po/Makefile index 57ead20..9fe7e74 100644 --- a/po/Makefile +++ b/po/Makefile @@ -13,9 +13,9 @@ all: .ready # to ensure that %.tr: %.po text.inc msgfmt $< -o - | msgunfmt | \ - msgmerge --no-fuzzy-matching - bootloader.pot > tmpfile.po && \ - bin/po2txt --product='$(PRODUCT)' tmpfile.po >$@ - echo rm -f tmpfile.po + msgmerge --no-fuzzy-matching - bootloader.pot > tmp_$< && \ + bin/po2txt --product='$(PRODUCT)' tmp_$< >$@ + rm -f tmp_$< # en.tr uses msgids from bootloader.pot en.tr text.inc: bootloader.pot -- cgit v1.2.1