diff options
Diffstat (limited to 'chat/kadu/patches/patch-ad')
-rw-r--r-- | chat/kadu/patches/patch-ad | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/chat/kadu/patches/patch-ad b/chat/kadu/patches/patch-ad index fc01bcf366b..35cdd2d9983 100644 --- a/chat/kadu/patches/patch-ad +++ b/chat/kadu/patches/patch-ad @@ -1,15 +1,18 @@ -$NetBSD: patch-ad,v 1.3 2006/01/22 00:12:37 adam Exp $ +$NetBSD: patch-ad,v 1.4 2007/10/14 07:51:20 adam Exp $ ---- modules/Makefile.in.orig 2006-01-21 18:30:58.000000000 +0000 -+++ modules/Makefile.in 2006-01-21 18:31:53.000000000 +0000 -@@ -295,9 +295,7 @@ - if test -d translations; then \ - cd translations && \ - for trans in *.ts; do \ -- if [ ! -e $${trans//\ts/qm} ] || test $$trans -nt $${trans//\ts/qm}; then \ -- $(QT_LRELEASE_DIR)/lrelease $$trans; \ -- fi; \ -+ $(QT_LRELEASE_DIR)/lrelease $$trans; \ - done && \ - cd ..; \ - fi && \ +--- modules/Makefile.in.orig 2006-11-11 19:51:13.000000000 +0100 ++++ modules/Makefile.in +@@ -541,12 +541,7 @@ $(module_targets): + if test -d translations; then \ + cd translations && \ + for trans in *.ts; do \ +- qm=`echo $${trans} | sed "s/\.ts/\.qm/"` && \ +- if [ ! -e $${qm} -o $$trans -nt $${qm} ]; then \ +- echo compiling translation file $$trans; \ +- echo $(QT_LRELEASE_DIR)/lrelease $$trans >> ../../$(LOGFILE); \ +- $(QT_LRELEASE_DIR)/lrelease $$trans; \ +- fi; \ ++ $(QT_LRELEASE_DIR)/lrelease $$trans; \ + done && \ + cd ..; \ + fi && \ |