docs/Formula-Cookbook: preach what we practise

This commit is contained in:
Claudia 2018-09-04 13:56:02 +02:00
parent 817b72d5ba
commit 6a38b0189c
No known key found for this signature in database
GPG Key ID: 246AC3C0F10BE51F

View File

@ -396,12 +396,7 @@ system "make", "target", "VAR2=value1", "VAR2=value2", "VAR3=values can have spa
``` ```
```ruby ```ruby
args = %W[ system "make", "CC=#{ENV.cc}", "PREFIX=#{prefix}"
CC=#{ENV.cc}
PREFIX=#{prefix}
]
system "make", *args
``` ```
Note that values *can* contain unescaped spaces if you use the multiple-argument form of `system`. Note that values *can* contain unescaped spaces if you use the multiple-argument form of `system`.