mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2025-12-20 04:20:04 +01:00
When listing all packages, the purpose is to get a quick look at what's installed and not to scrutinize the validity of each .pc file. To see errors from the parser during --list-all, the user can just add --print-errors.
22 lines
825 B
Bash
Executable file
22 lines
825 B
Bash
Executable file
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
. ${srcdir}/common
|
|
|
|
# Check that debug output works with minimal output. This is still much
|
|
# more than desirable.
|
|
|
|
RESULT="PKG_CONFIG_DEBUG_SPEW variable enabling debug spew
|
|
Adding directory '$srcdir' from PKG_CONFIG_PATH
|
|
Global variable definition 'pc_sysrootdir' = '/'
|
|
Global variable definition 'pc_top_builddir' = '\$(top_builddir)'
|
|
Error printing enabled by default due to use of output options besides --exists, --atleast/exact/max-version or --list-all. Value of --silence-errors: 0
|
|
Error printing enabled
|
|
$PACKAGE_VERSION"
|
|
PKG_CONFIG_DEBUG_SPEW=1 run_test --version
|
|
|
|
RESULT="Error printing enabled by default due to use of output options besides --exists, --atleast/exact/max-version or --list-all. Value of --silence-errors: 0
|
|
Error printing enabled
|
|
$PACKAGE_VERSION"
|
|
run_test --debug --version
|