diff options
Diffstat (limited to 'Formula/fallible-latest.rb')
-rw-r--r-- | Formula/fallible-latest.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Formula/fallible-latest.rb b/Formula/fallible-latest.rb index e3083c0..2699b8f 100644 --- a/Formula/fallible-latest.rb +++ b/Formula/fallible-latest.rb @@ -8,9 +8,8 @@ class FallibleLatest < Formula depends_on 'valgrind' => :build def install - system './configure', "--prefix=#{prefix}" system 'make' system 'make', 'check' - system 'make', 'install' + system 'make', 'install', "PREFIX=#{prefix}" end end |