mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
separate flags from shebang
This commit is contained in:
parent
977f65f01d
commit
7629744a3d
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -ex
|
||||
#!/bin/sh
|
||||
set -ex
|
||||
|
||||
# This file is part of systemd.
|
||||
#
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
$1 -E -dM -include sys/socket.h - </dev/null | \
|
||||
grep -Ev 'AF_UNSPEC|AF_MAX' | \
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
$1 -dM -include net/if_arp.h - </dev/null | \
|
||||
awk '/^#define[ \t]+ARPHRD_[^ \t]+[ \t]+[^ \t]/ { print $2; }' | \
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
$1 -dM -include linux/capability.h -include "$2" -include "$3" - </dev/null | \
|
||||
awk '/^#define[ \t]+CAP_[A-Z_]+[ \t]+/ { print $2; }' | \
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
$1 -dM -include errno.h - </dev/null | \
|
||||
awk '/^#define[ \t]+E[^ _]+[ \t]+/ { print $2; }'
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
$1 -dM -include netinet/in.h - </dev/null | \
|
||||
awk '/^#define[ \t]+IPPROTO_[^ \t]+[ \t]+[^ \t]/ { print $2; }' | \
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
if nm -D -u "$1" | grep ' U '; then
|
||||
echo "Undefined symbols detected!"
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
cpp="$1"
|
||||
shift
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
awk ' BEGIN {
|
||||
print "%{\n\
|
||||
#if __GNUC__ >= 7\n\
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
$1 -dM -include linux/input.h - </dev/null | awk '
|
||||
/\<(KEY_(MAX|MIN_INTERESTING))|(BTN_(MISC|MOUSE|JOYSTICK|GAMEPAD|DIGI|WHEEL|TRIGGER_HAPPY))\>/ { next }
|
||||
|
@ -720,7 +720,8 @@ class NetworkdClientTest(ClientTestBase, unittest.TestCase):
|
||||
self.addCleanup(os.remove, script)
|
||||
with os.fdopen(fd, 'w+') as f:
|
||||
f.write('''\
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
mkdir -p /run/systemd/network
|
||||
mkdir -p /run/systemd/netif
|
||||
mount -t tmpfs none /run/systemd/network
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
cd "$MESON_SOURCE_ROOT"
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
# Try to guess the build directory:
|
||||
# we look for subdirectories of the parent directory that look like ninja build dirs.
|
||||
|
@ -1,3 +1,4 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
"$@" '-' -o/dev/null </dev/null
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
export SYSTEMD_LOG_LEVEL=info
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
git shortlog -s `git describe --abbrev=0`.. | \
|
||||
cut -c8- | \
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
cd "$1"
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
# this is needed mostly because $DESTDIR is provided as a variable,
|
||||
# and we need to create the target directory...
|
||||
|
@ -1,4 +1,5 @@
|
||||
#!/bin/sh -eu
|
||||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
unitdir="$1"
|
||||
target="$2"
|
||||
|
Loading…
Reference in New Issue
Block a user