diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-01-09 14:20:28 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-01-09 14:20:28 +0000 |
commit | 545d2e981b395dac78808a935a670f03c54cd296 (patch) | |
tree | d669e967897a4a8dbe7a91e63f3b6c032e6a59ff | |
parent | bda2bfd02206d2dd8363f51a92a8a6fbafb20b39 (diff) | |
download | urpmi-545d2e981b395dac78808a935a670f03c54cd296.tar urpmi-545d2e981b395dac78808a935a670f03c54cd296.tar.gz urpmi-545d2e981b395dac78808a935a670f03c54cd296.tar.bz2 urpmi-545d2e981b395dac78808a935a670f03c54cd296.tar.xz urpmi-545d2e981b395dac78808a935a670f03c54cd296.zip |
do not hardcode a non standard width
-rw-r--r-- | po/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/Makefile b/po/Makefile index b54c57c4..59b4095c 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 --width=79 "$$n" $< > "$$n"t; \ + msgmerge "$$n" $< > "$$n"t; \ mv -f "$$n"t "$$n"; \ done |