aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitriy Dzema2010-05-11 01:11:08 +1100
committerAdam Vandenberg2010-05-10 07:46:51 -0700
commitdc0cd559fec5aac4683e8e697a41aed572233400 (patch)
tree150e6c624eae28a8ef2547ea1a950a5abc64dfb8
parenta5e04919347cdfc1692efe1c04f1fe251ccd277b (diff)
downloadhomebrew-dc0cd559fec5aac4683e8e697a41aed572233400.tar.bz2
Split arguments into separate XML tags.
This fixes the problem with launchctl which does not want to load plists with spaces in ProgramArguments strings Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/memcached.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/memcached.rb b/Library/Formula/memcached.rb
index 327aafd42..ea613a28d 100644
--- a/Library/Formula/memcached.rb
+++ b/Library/Formula/memcached.rb
@@ -39,7 +39,8 @@ Add "-d" to start it as a daemon.
<key>ProgramArguments</key>
<array>
<string>#{HOMEBREW_PREFIX}/bin/memcached</string>
- <string>-l 127.0.0.1</string>
+ <string>-l</string>
+ <string>127.0.0.1</string>
</array>
<key>RunAtLoad</key>
<true/>