From 7aa95df2b42876bfa061abd792f6bde132315f4e Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 9 Dec 2005 22:35:31 +0000 Subject: [PATCH] Don't copy anything that only differs in CVS keywords. --- cp-po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cp-po b/cp-po index 7dbf842..77be350 100755 --- a/cp-po +++ b/cp-po @@ -39,7 +39,7 @@ for srcfile in $(find "$srcdir" -name '*.po'); do fi if [ "$srccat" = "$destcat" ]; then targetdir=$(echo $y | sed 's,nls\.mk$,po,') - if ! diff $srcfile $targetdir/$lang.po >/dev/null; then + if ! diff -I '\$\(Header\|Id\|PostgreSQL\):.*\$' $srcfile $targetdir/$lang.po >/dev/null; then echo " cp $srcfile $targetdir/$lang.po" cp $srcfile $targetdir/$lang.po fi -- 2.39.5