mirror of
https://github.com/gophernicus/gophernicus.git
synced 2025-02-02 15:08:00 -05:00
Merge pull request #116 from ryandesign/ryandesign-stderr
Suppress stderr output when checking for install
This commit is contained in:
commit
f845dd97f6
4
configure
vendored
4
configure
vendored
@ -113,9 +113,9 @@ else
|
|||||||
# Check it has required features (*cough* macos)
|
# Check it has required features (*cough* macos)
|
||||||
mkdir testconf
|
mkdir testconf
|
||||||
touch testfile
|
touch testfile
|
||||||
${INSTALL} -t testconf testfile 2>&1 >/dev/null || INSTALL=build-aux/install-sh
|
${INSTALL} -t testconf testfile >/dev/null 2>&1 || INSTALL=build-aux/install-sh
|
||||||
rm testconf/testfile
|
rm testconf/testfile
|
||||||
${INSTALL} -T testfile testconf/testfile 2>&1 >/dev/null || INSTALL=build-aux/install-sh
|
${INSTALL} -T testfile testconf/testfile >/dev/null 2>&1 || INSTALL=build-aux/install-sh
|
||||||
rm -r testconf testfile
|
rm -r testconf testfile
|
||||||
printf "%s" "${INSTALL}"
|
printf "%s" "${INSTALL}"
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user