aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-10 19:51:20 -0800
committerAdam Vandenberg2012-03-10 19:51:20 -0800
commitb547016daf4f40fd26fa25bf2e45bc6c28dbaeb8 (patch)
tree6fb18b279488a98f975db9783ee511bf15d989fe
parentf09a5cc96753cbafcd13946df735075223606017 (diff)
downloadhomebrew-b547016daf4f40fd26fa25bf2e45bc6c28dbaeb8.tar.bz2
drush: just use libexec
-rw-r--r--Library/Formula/drush.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/drush.rb b/Library/Formula/drush.rb
index e9155c2ad..0617d3843 100644
--- a/Library/Formula/drush.rb
+++ b/Library/Formula/drush.rb
@@ -13,8 +13,8 @@ class Drush < Formula
head 'git://git.drupal.org/project/drush.git'
def install
- prefix.install Dir['*'] # No lib folder, so this is OK for now.
- bin.install_symlink prefix+'drush'
- DrushMake.new.brew { (prefix+'commands/drush_make').install Dir['*'] }
+ libexec.install Dir['*']
+ bin.install_symlink libexec+'drush'
+ DrushMake.new.brew { (libexec+'commands/drush_make').install Dir['*'] }
end
end