Update libgpod formula to use autoreconf for configuration instead of autogen.sh for improved compatibility with modern autotools.
This commit is contained in:
@@ -17,8 +17,10 @@ class Libgpod < Formula
|
|||||||
depends_on "sqlite"
|
depends_on "sqlite"
|
||||||
|
|
||||||
def install
|
def install
|
||||||
ENV["NOCONFIGURE"] = "1"
|
# Upstream's autogen.sh is very old and may hardcode ancient automake checks
|
||||||
system "./autogen.sh"
|
# (e.g. looking for automake-1.7). Using autoreconf is the standard Homebrew
|
||||||
|
# way and works with modern autotools.
|
||||||
|
system "autoreconf", "-fiv"
|
||||||
|
|
||||||
system "./configure", *std_configure_args,
|
system "./configure", *std_configure_args,
|
||||||
"--disable-dependency-tracking",
|
"--disable-dependency-tracking",
|
||||||
|
|||||||
Reference in New Issue
Block a user