mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-05-18 04:28:10 +02:00
check-debug, check-path, and check-system-flags used the following pattern which fails under FreeBSD's /bin/sh VAR_NAME=value run_test --args When this is run VAR_NAME is not exported to `run_test` so I changed this pattern to: VAR_NAME=value export VAR_NAME run_test --args Also added `unset` in a few cases where it would/could make a difference.
27 lines
884 B
Bash
Executable file
27 lines
884 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
|
|
export PKG_CONFIG_DEBUG_SPEW
|
|
run_test --version
|
|
|
|
unset PKG_CONFIG_DEBUG_SPEW
|
|
|
|
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
|