aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-12-04 18:39:42 -0800
committerAdam Vandenberg2010-12-04 18:39:42 -0800
commit6509b1d12e2cb3cf068c53d8f154a93f94c7088d (patch)
tree8238b1a5ef0b2a42f3531c3e56118958212831a8 /Library
parente930d7b6dc02bc184c20f530a63bee1167f59be8 (diff)
downloadhomebrew-6509b1d12e2cb3cf068c53d8f154a93f94c7088d.tar.bz2
detox - fix audit issues
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/detox.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/detox.rb b/Library/Formula/detox.rb
index 519526143..7fa67ac78 100644
--- a/Library/Formula/detox.rb
+++ b/Library/Formula/detox.rb
@@ -8,8 +8,8 @@ class Detox <Formula
def install
system "./configure", "--mandir=#{man}", "--prefix=#{prefix}"
system "make"
- FileUtils.mkdir(prefix + "etc")
- FileUtils.mkdir_p(prefix + "share/detox")
+ (prefix + "etc").mkpath
+ (share + "detox").mkpath
system "make install"
end
end \ No newline at end of file