[monitoring-plugins] tools/generate-change-log: workaround for broken ...

Sven Nierlein git at monitoring-plugins.org
Wed Jul 30 15:40:07 CEST 2014


    Module: monitoring-plugins
    Branch: master
    Commit: 15f8dab30ea1990460ff4b35ce1125786d8ef27b
    Author: Sven Nierlein <Sven.Nierlein at consol.de>
 Committer: Sven Nierlein <sven at nierlein.de>
      Date: Wed Jul 30 15:17:26 2014 +0200
       URL: https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=15f8dab

tools/generate-change-log: workaround for broken Text::Wrap

workaround for broken Text::Wrap:
"This shouldn't happen at /usr/share/perl/5.18/Text/Wrap.pm line 84."
changing huge to overflow make generating changelogs work again at
the price of not having changelog strictly cut of at 80 columns
anymore. Words longer than 80 characters will now printed in one
line. This mainly affects old sf.net urls.

Signed-off-by: Sven Nierlein <Sven.Nierlein at consol.de>

---

 tools/generate-change-log | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/generate-change-log b/tools/generate-change-log
index e155f2c..ad19ce9 100755
--- a/tools/generate-change-log
+++ b/tools/generate-change-log
@@ -19,6 +19,7 @@ use Text::Wrap;
 
 # The lines will have a length of no more than $columns - 1.
 $Text::Wrap::columns = 81;
+$Text::Wrap::huge    = 'overflow';
 
 if (system('git rev-parse --git-dir >/dev/null 2>&1') != 0) {
 	print "Not a Git repository, so I won't update the ChangeLog.\n";



More information about the Commits mailing list