aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAlexis Hildebrandt2010-09-14 00:41:08 +0200
committerAdam Vandenberg2010-09-15 09:17:25 -0700
commitcabb4abfd8bc2d85fdd038d425b17d97407150d8 (patch)
tree8a9b11095beaa49f8d7a51a69d219023e755c20a /Library/Formula
parentc8b4bfceb4fc1ba2443ab95af5b1220dff6507f6 (diff)
downloadhomebrew-cabb4abfd8bc2d85fdd038d425b17d97407150d8.tar.bz2
Update Formula: remind
Remove Apple specific start-up message Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/remind.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/remind.rb b/Library/Formula/remind.rb
index 976a770c5..6a3645efe 100644
--- a/Library/Formula/remind.rb
+++ b/Library/Formula/remind.rb
@@ -8,7 +8,10 @@ class Remind <Formula
def install
# Remove unnecessary sleeps when running on Apple
inreplace "configure", "sleep 1", "true"
- inreplace "src/init.c", "sleep(5);", ""
+ inreplace "src/init.c" do |s|
+ s.gsub! "sleep(5);", ""
+ s.gsub! /rkrphgvba\(.\);/, ""
+ end
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"