From 980db9d3fb6671c7562f97dfa3dd4f22fd74083f Mon Sep 17 00:00:00 2001 From: Andrew Yates Date: Thu, 3 Aug 2017 10:44:56 +0100 Subject: [PATCH] Remove errant pkg-config libdir We found an issue in Linuxbrew/homebrew-core#3366 where the addition of "/usr/lib/pkg-config" causes compilation issues if system pkg-config files are in that directory on Linux. Removing the line from here and adding it into the mac superenv. --- Library/Homebrew/extend/ENV/super.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Library/Homebrew/extend/ENV/super.rb b/Library/Homebrew/extend/ENV/super.rb index 692fd36239..b518c22a1c 100644 --- a/Library/Homebrew/extend/ENV/super.rb +++ b/Library/Homebrew/extend/ENV/super.rb @@ -138,7 +138,6 @@ module Superenv def determine_pkg_config_libdir PATH.new( - "/usr/lib/pkgconfig", homebrew_extra_pkg_config_paths, ).existing end