aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn2014-06-24 16:35:43 +0200
committerMike McQuaid2014-06-24 15:59:37 +0100
commit19cb12d705c52998c23bcd2bf2fe4e106b1d3bcb (patch)
treea641179fc41acb736dd51dd4ad7da785a0b9afbd
parent6c3f63d21ab3b967f650bedb9bbc7f455ebf36ae (diff)
downloadhomebrew-19cb12d705c52998c23bcd2bf2fe4e106b1d3bcb.tar.bz2
xmlformat: use perl version
Since Ruby 2 the ruby version issues many syntax warnings and OSX ships also with Ruby >2. Fortunately there is a Perl version on the same archive that does exactly the same thing. OSX ships with Perl 5, so we're fine. Closes #30411. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
-rw-r--r--Library/Formula/xmlformat.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/xmlformat.rb b/Library/Formula/xmlformat.rb
index 17be8cae2..8a5f29deb 100644
--- a/Library/Formula/xmlformat.rb
+++ b/Library/Formula/xmlformat.rb
@@ -6,6 +6,6 @@ class Xmlformat < Formula
sha1 '405057df0b8160775d486b671348820359b4b85d'
def install
- bin.install "xmlformat.rb" => "xmlformat"
+ bin.install "xmlformat.pl" => "xmlformat"
end
end