aboutsummaryrefslogtreecommitdiff
path: root/po
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2006-01-17 21:57:14 +0000
committerAndreas Oberritter <obi@opendreambox.org>2006-01-17 21:57:14 +0000
commitb797cf58e3f0973d4e8cb24f4fd24a0c0d254fe5 (patch)
treeb14f240f54a4dcb2ff9578a99beda5285625bca1 /po
parentc4ae98ad75de9cfb5a38fb01c116a771350f339a (diff)
downloadenigma2-b797cf58e3f0973d4e8cb24f4fd24a0c0d254fe5.tar.gz
enigma2-b797cf58e3f0973d4e8cb24f4fd24a0c0d254fe5.zip
fix: "make clean" aborts if no *.{mo,pot} files are found. use $(RM) instead of "rm"
Diffstat (limited to 'po')
-rw-r--r--po/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/po/Makefile.am b/po/Makefile.am
index f4b924a3..044261bf 100644
--- a/po/Makefile.am
+++ b/po/Makefile.am
@@ -19,7 +19,7 @@ merge:
# msgmerge -N -U enigma2.pot menu.pot
# msgmerge -N -U enigma2.pot setup.pot
msguniq -o enigma2uniq.pot enigma2.pot
- rm enigma2.pot
+ $(RM) enigma2.pot
mv enigma2uniq.pot enigma2.pot
msgmerge -N -U de.po enigma2.pot
msgmerge -N -U ar.po enigma2.pot
@@ -66,7 +66,7 @@ enigma2.pot:
msginit -l $@ -o $@ -i enigma2.pot --no-translator
clean:
- rm *.mo *.pot
+ $(RM) *.mo *.pot
install-data-am: default
for lang in $(LANGS); do \