1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2024-06-02 06:11:10 +00:00

Silence install messages for configure test

This commit is contained in:
fosslinux 2020-12-29 10:18:55 +11:00
parent 852b15a65d
commit 0e83a58df9

4
configure vendored
View File

@ -110,9 +110,9 @@ else
# Check it has required features (*cough* macos)
mkdir testconf
touch testfile
${INSTALL} -t testconf testfile || INSTALL=build-aux/install-sh
${INSTALL} -t testconf testfile 2>&1 >/dev/null || INSTALL=build-aux/install-sh
rm testconf/testfile
${INSTALL} -T testfile testconf/testfile || INSTALL=build-aux/install-sh
${INSTALL} -T testfile testconf/testfile 2>&1 >/dev/null || INSTALL=build-aux/install-sh
rm -r testconf testfile
printf "%s" "${INSTALL}"
fi