aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-10 17:20:43 -0800
committerAdam Vandenberg2012-03-10 17:20:43 -0800
commita10c6dea4d3cc07857978dcfc5aca9c8fd1d25fa (patch)
tree75672b705fc2543b39fcfac3cae9156c0f2cdabc /Library
parentaf2fd9363e595fa3d6f104554dab11ad5fa16bc2 (diff)
downloadhomebrew-a10c6dea4d3cc07857978dcfc5aca9c8fd1d25fa.tar.bz2
unshield: remove unused configure switch
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/unshield.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/unshield.rb b/Library/Formula/unshield.rb
index 430c1387f..423644f53 100644
--- a/Library/Formula/unshield.rb
+++ b/Library/Formula/unshield.rb
@@ -1,12 +1,13 @@
require 'formula'
class Unshield < Formula
- url 'http://downloads.sourceforge.net/project/synce/Unshield/0.6/unshield-0.6.tar.gz'
homepage 'http://www.synce.org/oldwiki/index.php/Unshield'
+ url 'http://downloads.sourceforge.net/project/synce/Unshield/0.6/unshield-0.6.tar.gz'
md5 '31a829192a255160d1f71cda4c865c9c'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end