aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/coreutils.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-21 20:48:36 -0800
committerAdam Vandenberg2012-02-24 21:35:51 -0800
commit55f3c49a9e27d88fbfecc48d982bf0f31414f9a5 (patch)
tree0e75d93de227d87f1f83e4809fe6455ae677f090 /Library/Formula/coreutils.rb
parentd3f35542992c4978525b1eaaa0255c92f1e830e0 (diff)
downloadhomebrew-55f3c49a9e27d88fbfecc48d982bf0f31414f9a5.tar.bz2
Introduce block form of mkdir
Diffstat (limited to 'Library/Formula/coreutils.rb')
-rw-r--r--Library/Formula/coreutils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/coreutils.rb b/Library/Formula/coreutils.rb
index f3ed96940..225cf3e18 100644
--- a/Library/Formula/coreutils.rb
+++ b/Library/Formula/coreutils.rb
@@ -24,7 +24,7 @@ class Coreutils < Formula
system "make install"
# create a gnubin dir that has all the commands without program-prefix
- mkdir_p libexec+'gnubin'
+ (libexec+'gnubin').mkpath
$commands.each do |g|
ln_sf "../../bin/g#{g}", libexec+"gnubin/#{g}"
end