aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/remind.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Formula/remind.rb b/Library/Formula/remind.rb
index 414e6245e..976a770c5 100644
--- a/Library/Formula/remind.rb
+++ b/Library/Formula/remind.rb
@@ -6,6 +6,9 @@ class Remind <Formula
md5 '261a5fb774a1d671cc71e36fd0ea02b3'
def install
+ # Remove unnecessary sleeps when running on Apple
+ inreplace "configure", "sleep 1", "true"
+ inreplace "src/init.c", "sleep(5);", ""
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"