diff options
author | Olivier Blin <oblin@mandriva.com> | 2009-02-24 14:40:15 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2009-02-24 14:40:15 +0000 |
commit | bd370325091826adfad3d0ba9ca6853137ca17a5 (patch) | |
tree | ea059f5a8ae30bf7cd3d024587017e12abb3da2a /po | |
parent | cb659062e09d4bc5881ba6ba4ed37b4e655896c6 (diff) | |
download | bootloader-theme-bd370325091826adfad3d0ba9ca6853137ca17a5.tar bootloader-theme-bd370325091826adfad3d0ba9ca6853137ca17a5.tar.gz bootloader-theme-bd370325091826adfad3d0ba9ca6853137ca17a5.tar.bz2 bootloader-theme-bd370325091826adfad3d0ba9ca6853137ca17a5.tar.xz bootloader-theme-bd370325091826adfad3d0ba9ca6853137ca17a5.zip |
potentially fix parallel build by not using the same temporary file for all jobs
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile | 6 |
1 files 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 |