Fix shebang for termux.

Termux doesn't have a /bin/sh. So we needto use $SHELL.
Keep /bin/sh as much as possible.
This commit is contained in:
Vladimir Serbinenko 2017-01-22 20:22:34 +03:00
parent 1073ddb120
commit a827807a13
60 changed files with 69 additions and 59 deletions

View File

@ -459,6 +459,16 @@ case "$build_os" in
esac
AC_SUBST(BUILD_EXEEXT)
# In some build environments like termux /bin/sh is not a valid
# shebang. Use $SHELL instead if it's executable and /bin/sh isn't
BUILD_SHEBANG=/bin/sh
for she in /bin/sh "$SHELL"; do
if test -x "$she" ; then
BUILD_SHEBANG="$she"
fi
done
AC_SUBST(BUILD_SHEBANG)
# For gnulib.
gl_INIT

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
# Copyright (C) 2010 Free Software Foundation, Inc.

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
# Copyright (C) 2010 Free Software Foundation, Inc.

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
# User-controllable options
grub_modinfo_target_cpu=@target_cpu@

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e
true

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2014 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
cd '@srcdir@'

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
. "@builddir@/grub-core/modinfo.sh"

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
# Run GRUB script in a Qemu instance

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
. "@builddir@/grub-core/modinfo.sh"

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
. "@builddir@/grub-core/modinfo.sh"

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# create a randome file
empty="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 1

View File

@ -1,4 +1,4 @@
#! /bin/sh -e
#! @BUILD_SHEBANG@ -e
# Run GRUB script in a Qemu instance
# Copyright (C) 2010 Free Software Foundation, Inc.

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
. "@builddir@/grub-core/modinfo.sh"

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
@builddir@/grub-script-check <<EOF

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Run GRUB script in a Qemu instance
# Copyright (C) 2010 Free Software Foundation, Inc.

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
@builddir@/grub-script-check << EOF

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
# Run GRUB script in a Qemu instance

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
@builddir@/grub-script-check <<EOF

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
# grub-script-check refuses to pass a file with no commands; this usually

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
. "@builddir@/grub-core/modinfo.sh"

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
# Copyright (C) 2010 Free Software Foundation, Inc.

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# create a randome file
file="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 1

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
# Compares GRUB script output with BASH output.

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
set -e
# Run GRUB script in a Qemu instance

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! @BUILD_SHEBANG@
# Copyright (C) 2013 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!@BUILD_SHEBANG@
set -e