[oe-commits] [openembedded-core] 19/43: kmod: set ac_cv_path_DOLT_BASH to /usr/bin/env bash

git at git.openembedded.org git at git.openembedded.org
Sat Apr 8 21:49:00 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit fd2758ed26e8ed6d76c66af0275c4aafbec758ac
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Thu Apr 6 03:05:56 2017 -0700

    kmod: set ac_cv_path_DOLT_BASH to /usr/bin/env bash
    
    The shebang's length is usually 128 as defined in /usr/include/linux/binfmts.h:
      #define BINPRM_BUF_SIZE 128
    
    So there would be errors when /path/to/hosttools/bash is longer than 128:
    
    /bin/sh: ./doltcompile: [snip]: bad interpreter: No such file or directory
    
    Set ac_cv_path_DOLT_BASH to "/usr/bin/env bash" to fix the problem.
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-kernel/kmod/kmod.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-kernel/kmod/kmod.inc b/meta/recipes-kernel/kmod/kmod.inc
index cfa409d..ba80fc5 100644
--- a/meta/recipes-kernel/kmod/kmod.inc
+++ b/meta/recipes-kernel/kmod/kmod.inc
@@ -30,6 +30,8 @@ S = "${WORKDIR}/git"
 EXTRA_AUTORECONF += "--install --symlink"
 EXTRA_OECONF +=" --enable-tools --with-zlib"
 
+CACHED_CONFIGUREVARS += "ac_cv_path_DOLT_BASH='/usr/bin/env bash'"
+
 PACKAGECONFIG[debug] = "--enable-debug,--disable-debug"
 PACKAGECONFIG[logging] = " --enable-logging,--disable-logging"
 PACKAGECONFIG[manpages] = "--enable-manpages, --disable-manpages, libxslt-native xmlto-native"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list