You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-irc/irc-client/files/irc-client-2.10.3_p7-amd64-...

30 lines
741 B

From: Nathan Phillip Brink <binki@gentoo.org>
Subject: Do not ignore the --host argument passed to the fake ./configure.
--- a/configure
+++ b/configure
@@ -10,6 +10,7 @@
-version | --version | --versio | --versi | --vers)
quick_fwd=yes
break ;;
+ --host=*)
+ rev=$(expr "${arg}" : '[^=]*=\(.*\)')
+ ;;
- *)
- break ;;
esac
@@ -18,8 +21,10 @@
then
support/configure $*
else
- echo "retrieving the system name, type and OS release..."
- rev=`support/config.guess`
+ if ! test "${rev}"; then
+ echo "retrieving the system name, type and OS release..."
+ rev=`support/config.guess`
+ fi
if test "${rev}" # test for no output
then
echo " your system seems to be ${rev}."