aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/remind.rb
diff options
context:
space:
mode:
authorAlexis Hildebrandt2010-07-28 00:08:16 +0200
committerAdam Vandenberg2010-07-27 15:15:04 -0700
commit66f4a220be7a9f8c08dd047d41b85875077ccf72 (patch)
treeeccf946136cf8e0732b5a1061d84c9f322f94ef5 /Library/Formula/remind.rb
parent0905e2015a96e05b1ee765310d0b5ec8b0474dae (diff)
downloadhomebrew-66f4a220be7a9f8c08dd047d41b85875077ccf72.tar.bz2
Update Formula: remind
Remove unnecessary pause when building and running on Apple Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/remind.rb')
-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"