diff options
Diffstat (limited to 'polish/kadu/files/patch-modules_Makefile.in')
-rw-r--r-- | polish/kadu/files/patch-modules_Makefile.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/polish/kadu/files/patch-modules_Makefile.in b/polish/kadu/files/patch-modules_Makefile.in new file mode 100644 index 000000000000..5a83bb67c34e --- /dev/null +++ b/polish/kadu/files/patch-modules_Makefile.in @@ -0,0 +1,12 @@ +--- modules/Makefile.in Tue Oct 11 02:16:57 2005 ++++ modules/Makefile.in Tue Oct 18 19:34:54 2005 +@@ -295,7 +295,8 @@ + if test -d translations; then \ + cd translations && \ + for trans in *.ts; do \ +- if [ ! -e $${trans//\ts/qm} ] || test $$trans -nt $${trans//\ts/qm}; then \ ++ trans_qm="$$(echo $${trans} | sed -e 's/\.ts$$/\.qm/')"; \ ++ if [ ! -e $${trans_qm} ] || test $$trans -nt $${trans_qm}; then \ + $(QT_LRELEASE_DIR)/lrelease $$trans; \ + fi; \ + done && \ |