diff options
| author | Dmitriy Dzema | 2010-05-11 01:11:08 +1100 |
|---|---|---|
| committer | Adam Vandenberg | 2010-05-10 07:46:51 -0700 |
| commit | dc0cd559fec5aac4683e8e697a41aed572233400 (patch) | |
| tree | 150e6c624eae28a8ef2547ea1a950a5abc64dfb8 | |
| parent | a5e04919347cdfc1692efe1c04f1fe251ccd277b (diff) | |
| download | homebrew-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.rb | 3 |
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/> |
