From b08d0f1e4a3a9a40dc7d9045163db9c28f7169f5 Mon Sep 17 00:00:00 2001 From: FX Coudert Date: Mon, 9 Sep 2019 11:44:39 +0200 Subject: [PATCH] libdnet: remove Python 2 support Closes #44045. Signed-off-by: FX Coudert --- Formula/libdnet.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Formula/libdnet.rb b/Formula/libdnet.rb index 0ee379eb1c..52040d9442 100644 --- a/Formula/libdnet.rb +++ b/Formula/libdnet.rb @@ -15,7 +15,6 @@ class Libdnet < Formula depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build - depends_on "python@2" # does not support Python 3 def install # autoreconf to get '.dylib' extension on shared lib @@ -24,8 +23,7 @@ class Libdnet < Formula system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", - "--mandir=#{man}", - "--with-python" + "--mandir=#{man}" system "make", "install" end