]> asedeno.scripts.mit.edu Git - linux.git/blob - scripts/kconfig/check-pkgconfig.sh
ASoC: tlv320aic31xx: Add overflow detection support
[linux.git] / scripts / kconfig / check-pkgconfig.sh
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
3 # Check for pkg-config presence
4
5 if [ -z $(command -v pkg-config) ]; then
6         echo "'make *config' requires 'pkg-config'. Please install it." 1>&2
7         exit 1
8 fi