aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMisty De Meo2013-05-28 10:53:49 -0500
committerMisty De Meo2013-05-28 10:54:13 -0500
commitd42a2a359807b3eb264e979d09153b042df9f29f (patch)
tree570916cfed13a00eccf2c7d22ba95795274a929c /Library/Formula
parent46076794a79a22805f85d99847b99e9a89c1569f (diff)
downloadhomebrew-d42a2a359807b3eb264e979d09153b042df9f29f.tar.bz2
pth: run make test
If pth is miscompiled, other software that uses it can fail mysteriously without a clear indication of the source of the problem. This causes problems with gnupg2 on some platforms, for example. pth's `make test` will reveal this kind of problem, so always run that to be safe. See: mistydemeo/tigerbrew#39.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pth.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/pth.rb b/Library/Formula/pth.rb
index 6f22a217a..af3e8b3eb 100644
--- a/Library/Formula/pth.rb
+++ b/Library/Formula/pth.rb
@@ -12,6 +12,8 @@ class Pth < Formula
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
+ system "make"
+ system "make test"
system "make install"
end
end