All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] automake: bump version to 1.15
Date: Tue, 6 Jan 2015 14:57:24 +0000	[thread overview]
Message-ID: <54ABF7D4.8000401@imgtec.com> (raw)
In-Reply-To: <54ABE93B.3080506@imgtec.com>

Hi Thomas, Gustavo,

First issue found with automake-1.15. The package libmemcached fails at
the configure phase with the following error:

configure: error: cannot find install-sh, install.sh, or shtool in "."
"./.." "./../.."

It works fine using the automake version we have right now in Buildroot.

This snippet is included in the configure script if we use
automake-1.15, and it fails because is trying to find some files which
don't exist in the "." "./.." "./../.." directories:

-----------------------------------------------------
ac_aux_dir=
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
  if test -f "$ac_dir/install-sh"; then
    ac_aux_dir=$ac_dir
    ac_install_sh="$ac_aux_dir/install-sh -c"
    break
  elif test -f "$ac_dir/install.sh"; then
    ac_aux_dir=$ac_dir
    ac_install_sh="$ac_aux_dir/install.sh -c"
    break
  elif test -f "$ac_dir/shtool"; then
    ac_aux_dir=$ac_dir
    ac_install_sh="$ac_aux_dir/shtool install -c"
    break
  fi
done
if test -z "$ac_aux_dir"; then
  as_fn_error $? "cannot find install-sh, install.sh, or shtool in
\"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
fi

# These three variables are undocumented and unsupported,
# and are intended to be withdrawn in a future Autoconf release.
# They can cause serious problems if a builder's source tree is in a
directory
# whose full name contains unusual characters.
ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use
this var.
ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
-----------------------------------------------------

That snippet is NOT included if we don't use automake-1.15.

Regards,
-- 
Vicente Olivert Riera
Graduate Software Engineer, MIPS Platforms
Imagination Technologies Limited
t: +44 (0)113 2429814
www.imgtec.com

  reply	other threads:[~2015-01-06 14:57 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-06  9:07 [Buildroot] [PATCH] automake: bump version to 1.15 Vicente Olivert Riera
2015-01-06 11:08 ` Gustavo Zacarias
2015-01-06 11:20   ` Vicente Olivert Riera
2015-01-06 11:35     ` Gustavo Zacarias
2015-01-06 11:55       ` Vicente Olivert Riera
2015-01-06 13:45   ` Thomas Petazzoni
2015-01-06 13:48     ` Gustavo Zacarias
2015-01-06 13:55       ` Vicente Olivert Riera
2015-01-06 14:57         ` Vicente Olivert Riera [this message]
2015-01-06 15:19           ` Gustavo Zacarias
2015-01-06 15:22             ` Vicente Olivert Riera
2015-01-07 21:11 ` Thomas Petazzoni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54ABF7D4.8000401@imgtec.com \
    --to=vincent.riera@imgtec.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.