Follow-up Comment #11, patch #7055 (project libtool):

Thanks for the link.  The bug seems to be in your configure.ac:

# This is required to get past a stupid configure bug when making the rpm.
# Basically it is broken to specify the host as a command line argument to
# configure on its own, i.e. without giving --host=. It is supposed to work
# but doesn't. So this sets host and erases nonopt effectively moving the
# standalone command line option into the --host= form.
if test "x$nonopt" != "xNONE"; then
host="$nonopt"
nonopt="NONE"
fi

Try removing those lines.  Or at least, add something like
  && test "x$nonopt" != x

to the if conditions, so that $host is not set to the empty value here.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/patch/?7055>

_______________________________________________
  Nachricht geschickt von/durch Savannah
  http://savannah.gnu.org/



Reply via email to