diff options
| author | Jack Nagel | 2012-02-06 16:11:45 -0600 |
|---|---|---|
| committer | Jack Nagel | 2012-02-12 00:00:53 -0600 |
| commit | b715bafca29f3e2d9729644b93bf8f1682f7620f (patch) | |
| tree | 1c1105fccf3be74b45e99e805d2ec91260e9ce38 /Library/Formula/synfigstudio.rb | |
| parent | 96925c50d0afe815fd9e84bf19600d8661a9f08f (diff) | |
| download | homebrew-b715bafca29f3e2d9729644b93bf8f1682f7620f.tar.bz2 | |
synfigstudio: omit autoreconf
According to the build instructions, autoreconf is only necessary when
building from git, and not the release tarballs.
Noticed when rebuilding against the updated gnome-mm bindings.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/synfigstudio.rb')
| -rw-r--r-- | Library/Formula/synfigstudio.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/synfigstudio.rb b/Library/Formula/synfigstudio.rb index 2ca607a78..a8409f2d5 100644 --- a/Library/Formula/synfigstudio.rb +++ b/Library/Formula/synfigstudio.rb @@ -1,8 +1,8 @@ require 'formula' class Synfigstudio < Formula - url 'http://downloads.sourceforge.net/project/synfig/synfigstudio/0.63.03/synfigstudio-0.63.03.tar.gz' homepage 'http://synfig.org' + url 'http://downloads.sourceforge.net/project/synfig/synfigstudio/0.63.03/synfigstudio-0.63.03.tar.gz' md5 'a166ff4917b0e058cae96e51aa273080' skip_clean :all # So modules will load @@ -14,8 +14,8 @@ class Synfigstudio < Formula depends_on 'synfig' def install - system "autoreconf --install --force" - system "./configure", "--disable-debug", "--disable-dependency-tracking", + system "./configure", "--disable-debug", + "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" end |
