diff options
author | OBATA Akio <[email protected]> | 2020-07-10 15:40:42 +0900 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-02-02 01:32:28 +0100 |
commit | 153d14805fc8bc4a951826085a005866c679c6e6 (patch) | |
tree | ebf34b572ffaf9875bb1cf6823f38b5f7c4467f3 /config.tests/unix | |
parent | 7e71ac3dd2dabb32740c3c5f8fe926be9f02b2c3 (diff) | |
download | qt3-153d14805fc8bc4a951826085a005866c679c6e6.tar.gz qt3-153d14805fc8bc4a951826085a005866c679c6e6.zip |
Fix to display verbose message in some config tests
Signed-off-by: OBATA Akio <[email protected]>
(cherry picked from commit 6f2da8af3a2b7343b3d67be3a3093bb9cfc9d36e)
Diffstat (limited to 'config.tests/unix')
-rwxr-xr-x | config.tests/unix/cups.test | 2 | ||||
-rwxr-xr-x | config.tests/unix/nis.test | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/config.tests/unix/cups.test b/config.tests/unix/cups.test index 0b97e2b..55f5aee 100755 --- a/config.tests/unix/cups.test +++ b/config.tests/unix/cups.test @@ -45,7 +45,7 @@ else done if [ -z "$F" ]; then CUPS=no - [ "VERBOSE" = "yes" ] && echo " Could not find CUPS lib anywhere in $LIBDIRS" + [ "$VERBOSE" = "yes" ] && echo " Could not find CUPS lib anywhere in $LIBDIRS" fi done fi diff --git a/config.tests/unix/nis.test b/config.tests/unix/nis.test index 2dc4c5a..21f9f89 100755 --- a/config.tests/unix/nis.test +++ b/config.tests/unix/nis.test @@ -50,7 +50,7 @@ else done if [ -z "$F" ]; then NIS=no - [ "VERBOSE" = "yes" ] && echo " Could not find NIS lib anywhere in $LIBDIRS" + [ "$VERBOSE" = "yes" ] && echo " Could not find NIS lib anywhere in $LIBDIRS" fi done fi |