aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMichael Dippery2010-09-16 14:45:35 -0400
committerAdam Vandenberg2010-09-16 11:56:36 -0700
commit53dff875a677d18864da8c297663efda8464a54f (patch)
tree08bfa5ffab65533b8d9d0e5b68b0f89ba4ef93ec /Library/Formula
parent80a319274a291207db45d450233d51da384b5984 (diff)
downloadhomebrew-53dff875a677d18864da8c297663efda8464a54f.tar.bz2
solr: Install files to libexec
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/solr.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/solr.rb b/Library/Formula/solr.rb
index e9c4f8aa8..ed9b0a486 100644
--- a/Library/Formula/solr.rb
+++ b/Library/Formula/solr.rb
@@ -10,13 +10,13 @@ class Solr <Formula
if [ -z "$1" ]; then
echo "Usage: $ solr path/to/config/dir"
else
- cd #{prefix}/example && java -Dsolr.solr.home=$1 -jar start.jar
+ cd #{libexec}/example && java -Dsolr.solr.home=$1 -jar start.jar
fi
EOS
end
def install
- prefix.install Dir['*']
+ libexec.install Dir['*']
(bin+'solr').write script
end