aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2010-03-05 17:59:25 -0800
committerAdam Vandenberg2010-03-05 17:59:25 -0800
commit9db7c966e24291fcbf5ea1cf8d3d52d76f68fde3 (patch)
tree5cc98cfd2020dbc9b6f0e5290f3dc03627c116fc
parent9ab4f040067b4bfce76c00d88cee4f6d314cc5f2 (diff)
downloadhomebrew-9db7c966e24291fcbf5ea1cf8d3d52d76f68fde3.tar.bz2
MySQL - simplify a couple path references
-rw-r--r--Library/Formula/mysql.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/mysql.rb b/Library/Formula/mysql.rb
index eb7fcd532..8eb604fb2 100644
--- a/Library/Formula/mysql.rb
+++ b/Library/Formula/mysql.rb
@@ -47,7 +47,7 @@ class Mysql <Formula
system "./configure", *configure_args
system "make install"
- FileUtils.ln_s "#{prefix}/libexec/mysqld", "#{prefix}/bin/mysqld"
+ ln_s "#{libexec}/mysqld", "#{bin}/mysqld"
(prefix+'mysql-test').rmtree unless ARGV.include? '--with-tests' # save 66MB!
(prefix+'sql-bench').rmtree unless ARGV.include? '--with-bench'