diff options
Diffstat (limited to 'devel/glibmm/files/patch-docs::reference::beautify_docs.pl')
-rw-r--r-- | devel/glibmm/files/patch-docs::reference::beautify_docs.pl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/glibmm/files/patch-docs::reference::beautify_docs.pl b/devel/glibmm/files/patch-docs::reference::beautify_docs.pl new file mode 100644 index 000000000..bbb320452 --- /dev/null +++ b/devel/glibmm/files/patch-docs::reference::beautify_docs.pl @@ -0,0 +1,20 @@ +--- docs/reference/beautify_docs.pl.in.orig Thu Feb 12 02:52:02 2004 ++++ docs/reference/beautify_docs.pl.in Thu Feb 12 03:00:08 2004 +@@ -25,7 +25,7 @@ + my ($file) = @_; + my @outbuf; + +- open(FILE, '<', $file); ++ open(FILE, "<$file"); + + while(<FILE>) + { +@@ -71,7 +71,7 @@ + push(@outbuf, $_); + } + +- open(FILE, '>', $file); ++ open(FILE, ">$file"); + + # write the whole buffer back + print FILE "$_" foreach(@outbuf); |