Remove input redirects in autogen.sh

JTSDK allow building hamlib from JTSDK-QT or JT-MSYS.

However, on Windows 7 64-bit the i/o redirects are causing the command
console to crash when building from JTSDK-QT.

This patch simply removes the input redirect which shouldn't be
necessary.

73
Mike W9MDB
Hamlib-3.1
Michael Black 2016-03-11 10:19:03 -06:00 zatwierdzone przez Nate Bargmann
rodzic 86a24c5a18
commit cd9b0ed58d
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -26,21 +26,21 @@ FILE=include/hamlib/rig.h
DIE=0
("$AUTORECONF" --version) < /dev/null > /dev/null 2>&1 || {
("$AUTORECONF" --version) > /dev/null 2>&1 || {
echo
echo "You must have autoreconf installed to compile $PROJECT."
echo "Download the appropriate package for your distribution,"
DIE=1
}
("$AUTOMAKE" --version) < /dev/null > /dev/null 2>&1 || {
("$AUTOMAKE" --version) > /dev/null 2>&1 || {
echo
echo "You must have automake installed to compile $PROJECT."
echo "Download the appropriate package for your distribution,"
DIE=1
}
("$LIBTOOLIZE" --version) < /dev/null > /dev/null 2>&1 || {
("$LIBTOOLIZE" --version) > /dev/null 2>&1 || {
echo
echo "You must have libtool installed to compile $PROJECT."
echo "Download the appropriate package for your distribution."