[Buildroot] [git commit] package/autossh: really fix the path to ssh

Thomas Petazzoni thomas.petazzoni at free-electrons.com
Sat Nov 28 13:48:20 UTC 2015


commit: http://git.buildroot.net/buildroot/commit/?id=7311116e78f910e42725d51fbf753fb795b6d237
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

The ./configure script is not up-to-date with what is in configure.ac,
which prevents --with-ssh from working properly.

So, we autoreconfigure autossh, which fixes the issue.

Note however that this is not really an autotools package, since it only
uses autoconf and not automake. However, making it a generic pacakge is
not trivial, since autossh really wants config.h as generated by
./configure. Using the autotools infra in this case helps us easily
autoreconfiguring without to manual depend on all the autotools-relates
host packages.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998 at free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at free-electrons.com>
---
 package/autossh/autossh.mk |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/package/autossh/autossh.mk b/package/autossh/autossh.mk
index 8a9def3..d52b4e9 100644
--- a/package/autossh/autossh.mk
+++ b/package/autossh/autossh.mk
@@ -10,6 +10,9 @@ AUTOSSH_SOURCE = autossh-$(AUTOSSH_VERSION).tgz
 AUTOSSH_LICENSE = Modified BSD
 AUTOSSH_LICENSE_FILES = autossh.c
 
+# Bundled ./configure is not up-to-date with what is in configure.ac
+AUTOSSH_AUTORECONF = YES
+
 AUTOSSH_CONF_OPTS = --with-ssh=/usr/bin/ssh
 
 define AUTOSSH_INSTALL_TARGET_CMDS


More information about the buildroot mailing list