forked from FFmpeg/FFmpeg
configure, etc: switch to shebang without space
Note that the config.sh file is left without a shebang, this file is supposed to be sourced into the current environment. This commit is purely cosmetic. Signed-off-by: J. Dekker <jdek@itanimul.li>
This commit is contained in:
parent
fcfd17dbb4
commit
67e2f8b6bf
4 changed files with 4 additions and 4 deletions
2
configure
vendored
2
configure
vendored
|
@ -4737,7 +4737,7 @@ chmod +x $TMPE
|
||||||
|
|
||||||
# make sure we can execute files in $TMPDIR
|
# make sure we can execute files in $TMPDIR
|
||||||
cat > $TMPSH 2>> $logfile <<EOF
|
cat > $TMPSH 2>> $logfile <<EOF
|
||||||
#! /bin/sh
|
#!/bin/sh
|
||||||
EOF
|
EOF
|
||||||
chmod +x $TMPSH >> $logfile 2>&1
|
chmod +x $TMPSH >> $logfile 2>&1
|
||||||
if ! $TMPSH >> $logfile 2>&1; then
|
if ! $TMPSH >> $logfile 2>&1; then
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#! /usr/bin/env perl
|
#!/usr/bin/env perl
|
||||||
|
|
||||||
# This script will print the dependency of a Texinfo file to stdout.
|
# This script will print the dependency of a Texinfo file to stdout.
|
||||||
# texidep.pl <src-path> <input.texi> <output.ext>
|
# texidep.pl <src-path> <input.texi> <output.ext>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#! /bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
export LC_ALL=C
|
export LC_ALL=C
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#! /bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
config=$1
|
config=$1
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue