diff options
| author | Adam Vandenberg | 2010-02-04 17:40:05 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-02-26 17:39:30 -0800 |
| commit | 1385991b8fc6aad4ef1076e2058759e20bce0fc7 (patch) | |
| tree | c92760068cce6e3757461b4cc01cb8e16fdfb4ac /Library/Formula | |
| parent | d56112a399d2803b24ab6e1352feae59a8200a1d (diff) | |
| download | homebrew-1385991b8fc6aad4ef1076e2058759e20bce0fc7.tar.bz2 | |
Use quoted, comma-separated "system" calls.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/vorbis-tools.rb | 3 | ||||
| -rw-r--r-- | Library/Formula/xmlrpc-c.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/yajl.rb | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/vorbis-tools.rb b/Library/Formula/vorbis-tools.rb index ddc3ab6c9..6017f8ab3 100644 --- a/Library/Formula/vorbis-tools.rb +++ b/Library/Formula/vorbis-tools.rb @@ -11,7 +11,8 @@ class VorbisTools <Formula #depends_on 'ogg123' => :optional def install - system "./configure --disable-debug --disable-nls --disable-dependency-tracking --prefix='#{prefix}'" + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--disable-nls", "--prefix=#{prefix}" # wtf?! inreplace 'ogg123/Makefile', '-arch ppc ppc64 i386 x86_64', '-arch i386' system "make install" diff --git a/Library/Formula/xmlrpc-c.rb b/Library/Formula/xmlrpc-c.rb index 5e8666479..48b3e838e 100644 --- a/Library/Formula/xmlrpc-c.rb +++ b/Library/Formula/xmlrpc-c.rb @@ -10,7 +10,7 @@ class XmlrpcC <Formula # choosing --enable-libxml2-backend to lose some weight and not statically # link in expat #NOTE seemingly it isn't possible to build dylibs with this thing - system "./configure --disable-debug --enable-libxml2-backend --prefix='#{prefix}'" + system "./configure", "--disable-debug", "--enable-libxml2-backend", "--prefix=#{prefix}" system "make install" end end
\ No newline at end of file diff --git a/Library/Formula/yajl.rb b/Library/Formula/yajl.rb index 7c094908e..6566d1c07 100644 --- a/Library/Formula/yajl.rb +++ b/Library/Formula/yajl.rb @@ -12,7 +12,7 @@ class Yajl <Formula def install ENV.deparallelize - system "./configure --prefix '#{prefix}'" + system "./configure", "--prefix#{prefix}" system "make install" end end
\ No newline at end of file |
