]> Git Repo - linux.git/blob - scripts/kconfig/check-pkgconfig.sh
mtd: spi-nor: add support to non-uniform SFDP SPI NOR flash memories
[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
This page took 0.030492 seconds and 4 git commands to generate.