aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2014-12-05 11:30:17 +0000
committerMike McQuaid2014-12-05 11:30:25 +0000
commit98f407c82f02bc8657623c0823e4e74508310320 (patch)
tree1cae6613f6a53ff5050a57b3cb7c01ead8f735fb /Library/Formula
parentbfbe03436accd767859830221ea7a6e85a80fd65 (diff)
downloadhomebrew-98f407c82f02bc8657623c0823e4e74508310320.tar.bz2
mawk: general cleanup.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mawk.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/mawk.rb b/Library/Formula/mawk.rb
index f9765aea8..a98919559 100644
--- a/Library/Formula/mawk.rb
+++ b/Library/Formula/mawk.rb
@@ -19,12 +19,12 @@ class Mawk < Formula
"--disable-silent-rules",
"--with-readline=/usr/lib",
"--mandir=#{man}"
- system "make install"
+ system "make", "install"
end
test do
version=`mawk '/version/ { print $2 }' #{prefix}/README`
+ assert_equal 0, $?.exitstatus
assert_equal version, "#{version}"
end
-
end