aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/aws-elasticache.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2013-11-15 23:57:07 -0800
committerAdam Vandenberg2013-11-15 23:57:07 -0800
commit024208466bfb4ffb479d48709caecc6a1e85ba4d (patch)
tree73baa7840435e5da56b1e877ca60888a65a482b9 /Library/Formula/aws-elasticache.rb
parent915d44030f95ce23b144992d46fde5f4085e5100 (diff)
downloadhomebrew-024208466bfb4ffb479d48709caecc6a1e85ba4d.tar.bz2
AWS tools: always install to libexec
Don't link jars into lib or service into bin.
Diffstat (limited to 'Library/Formula/aws-elasticache.rb')
-rw-r--r--Library/Formula/aws-elasticache.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/Library/Formula/aws-elasticache.rb b/Library/Formula/aws-elasticache.rb
index 0cfa78e8c..f3e1f51e4 100644
--- a/Library/Formula/aws-elasticache.rb
+++ b/Library/Formula/aws-elasticache.rb
@@ -9,13 +9,10 @@ class AwsElasticache < AmazonWebServicesFormula
depends_on 'ec2-api-tools'
def install
- rm Dir['bin/*.cmd'] # Remove Windows command files
- libexec.install "bin", "lib"
- bin.install_symlink Dir["#{libexec}/bin/*"]
- (bin/'service').unlink # Don't keep this symlink
+ standard_install
end
def caveats
- standard_instructions "AWS_ELASTICACHE_HOME", libexec
+ standard_instructions "AWS_ELASTICACHE_HOME"
end
end