diff options
author | OBATA Akio <[email protected]> | 2020-07-10 15:40:42 +0900 |
---|---|---|
committer | OBATA Akio <[email protected]> | 2020-07-10 15:40:42 +0900 |
commit | e37e24181bafe0fe84f2491a2c47d7fd7e2d2275 (patch) | |
tree | 056a8b8d7b338f56c5c36b0ec327864bb64dfbc8 /config.tests | |
parent | b79f0a7caabbf6e3523dad0a284466a672bc9940 (diff) | |
download | tqt3-e37e24181bafe0fe84f2491a2c47d7fd7e2d2275.tar.gz tqt3-e37e24181bafe0fe84f2491a2c47d7fd7e2d2275.zip |
Fix to display verbose message in some config tests
Signed-off-by: OBATA Akio <[email protected]>
Diffstat (limited to 'config.tests')
-rwxr-xr-x | config.tests/unix/cups.test | 2 | ||||
-rwxr-xr-x | config.tests/unix/nis.test | 2 | ||||
-rwxr-xr-x | config.tests/x11/xinput.test | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/config.tests/unix/cups.test b/config.tests/unix/cups.test index 0b97e2b9d..55f5aeee7 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 2dc4c5ae6..21f9f89c9 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 diff --git a/config.tests/x11/xinput.test b/config.tests/x11/xinput.test index c8b3e08dc..c31388bd1 100755 --- a/config.tests/x11/xinput.test +++ b/config.tests/x11/xinput.test @@ -39,7 +39,7 @@ for LIBDIR in $LIBDIRS; do done if [ -z "$F" ]; then XINPUT=no - [ "VERBOSE" = "yes" ] && echo " Could not find XInput lib anywhere in $LIBDIRS" + [ "$VERBOSE" = "yes" ] && echo " Could not find XInput lib anywhere in $LIBDIRS" fi # check for XInput.h and the IRIX wacom.h |