aboutsummaryrefslogtreecommitdiff
path: root/Formula/fallible-latest.rb
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-02-23 15:51:54 -0300
committerEuAndreh <eu@euandre.org>2021-02-23 15:51:54 -0300
commit21d2f5b658bb85cc599a43c9cdd49ec0afeaaac9 (patch)
tree01ef5e105c68473cb1d0fa598513445984d112e5 /Formula/fallible-latest.rb
parentUpdate package versions (diff)
downloadpackage-repository-21d2f5b658bb85cc599a43c9cdd49ec0afeaaac9.tar.gz
package-repository-21d2f5b658bb85cc599a43c9cdd49ec0afeaaac9.tar.xz
Remove ./configure script from Homebrew formulas
Diffstat (limited to '')
-rw-r--r--Formula/fallible-latest.rb3
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