diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-02-14 13:36:50 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-02-14 13:36:50 +0000 |
commit | 58a051b73becd437849595bcbe4b83937947e46c (patch) | |
tree | 0bcb13f1f7a9778d5b1de7b6b77fc8c0d6a57f66 | |
parent | cf22d7467208a0d5ba289a65628a58dc5703646d (diff) | |
download | urpmi-58a051b73becd437849595bcbe4b83937947e46c.tar urpmi-58a051b73becd437849595bcbe4b83937947e46c.tar.gz urpmi-58a051b73becd437849595bcbe4b83937947e46c.tar.bz2 urpmi-58a051b73becd437849595bcbe4b83937947e46c.tar.xz urpmi-58a051b73becd437849595bcbe4b83937947e46c.zip |
Add width argument to msgmerge
-rw-r--r-- | po/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/Makefile b/po/Makefile index 912fcdcb..ea0d19cb 100644 --- a/po/Makefile +++ b/po/Makefile @@ -25,7 +25,7 @@ all: $(GOALS) merge: $(PGOAL).pot @for n in $(POFILES); do \ echo "Merging $$n"; \ - msgmerge "$$n" $< > "$$n"t; \ + msgmerge --width=80 "$$n" $< > "$$n"t; \ mv -f "$$n"t "$$n"; \ done |