Use #!/usr/bin/env ... shebangs

This commit is contained in:
Ehmry - 2019-06-17 12:32:43 +02:00
parent 54776f36eb
commit 24deef9495
41 changed files with 41 additions and 41 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/tclsh #!/usr/bin/env tclsh
# #
# \brief Private utility to generate a dummy function from a symbol name # \brief Private utility to generate a dummy function from a symbol name

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
LANG=C LANG=C

View File

@ -1,4 +1,4 @@
#!/usr/bin/tclsh #!/usr/bin/env tclsh
# #
# \brief Generate ABI symbol list for a shared library # \brief Generate ABI symbol list for a shared library

View File

@ -1,4 +1,4 @@
#!/usr/bin/tclsh #!/usr/bin/env tclsh
# #
# \brief Automated exection of test cases # \brief Automated exection of test cases

View File

@ -1,4 +1,4 @@
#!/usr/bin/tclsh #!/usr/bin/env tclsh
# #
# \brief C++-coding-style checking tool # \brief C++-coding-style checking tool

View File

@ -1,4 +1,4 @@
#!/usr/bin/tclsh #!/usr/bin/env tclsh
# #
# \brief Detect inconsistencies between a shared library and its ABI # \brief Detect inconsistencies between a shared library and its ABI

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Prepare Genode build directory # \brief Prepare Genode build directory

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief ISO image creation tool # \brief ISO image creation tool
# \author Christian Helmuth # \author Christian Helmuth

View File

@ -1,4 +1,4 @@
#!/usr/bin/make --file #!/usr/bin/env -S make -f
# #
# \brief Create Genode software development kit # \brief Create Genode software development kit

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for creating an MMC image with a platform specific U-Boot setup # \brief Tool for creating an MMC image with a platform specific U-Boot setup

View File

@ -1,4 +1,4 @@
#!/usr/bin/tclsh #!/usr/bin/env tclsh
# #
# \brief Convert C++ code to html # \brief Convert C++ code to html

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Build binary archives from source # \brief Build binary archives from source

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for assembling API/source/binary archives # \brief Tool for assembling API/source/binary archives

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for determining the dependencies of depot content # \brief Tool for determining the dependencies of depot content

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Download packages # \brief Download packages

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Extract API/source/binary archives from Genode source tree # \brief Extract API/source/binary archives from Genode source tree

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Print a list of missing ports for given API/source/raw archives # \brief Print a list of missing ports for given API/source/raw archives

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for building a binary archive from source # \brief Tool for building a binary archive from source

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Simulate the download of files by copying content from a directory # \brief Simulate the download of files by copying content from a directory

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for assembling an API archive # \brief Tool for assembling an API archive

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for assembling a package archive # \brief Tool for assembling a package archive

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for assembling a raw-data archive # \brief Tool for assembling a raw-data archive

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for assembling a source archive # \brief Tool for assembling a source archive

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for assembling a package archive # \brief Tool for assembling a package archive

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for assembling a package archive of the current version # \brief Tool for assembling a package archive of the current version

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for invoking depot tool with static clang/llvm analyzer # \brief Tool for invoking depot tool with static clang/llvm analyzer

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
# #
# \brief Hash verification tool # \brief Hash verification tool
# \author Stephan Müller # \author Stephan Müller

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
# #
# \brief Signature verification tool # \brief Signature verification tool
# \author Stephan Müller # \author Stephan Müller

View File

@ -1,4 +1,4 @@
#!/usr/bin/tclsh #!/usr/bin/env tclsh
# read include file # read include file
set include_pathname [lindex $argv 0] set include_pathname [lindex $argv 0]

View File

@ -1,4 +1,4 @@
#!/usr/bin/tclsh #!/usr/bin/env tclsh
# #
# \brief Regular-expression-based C++ parser # \brief Regular-expression-based C++ parser

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for checking the hash file of a port # \brief Tool for checking the hash file of a port

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for checking remote 3rd-party sources # \brief Tool for checking remote 3rd-party sources

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for printing current contrib directory of port # \brief Tool for printing current contrib directory of port

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for listing ports # \brief Tool for listing ports

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for preparing and updating ports # \brief Tool for preparing and updating ports

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for updating symbolic links to ports # \brief Tool for updating symbolic links to ports

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for updating the hash file of a port # \brief Tool for updating the hash file of a port

View File

@ -1,4 +1,4 @@
#!/usr/bin/expect #!/usr/bin/env expect
## ##
# Reset the target machine or rather run the scenario with Qemu # Reset the target machine or rather run the scenario with Qemu

View File

@ -1,4 +1,4 @@
#!/usr/bin/expect #!/usr/bin/env expect
# #
# \brief Framework for running automated tests # \brief Framework for running automated tests

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool-chain creation tool for the Genode OS Framework # \brief Tool-chain creation tool for the Genode OS Framework
# \author Norman Feske # \author Norman Feske

View File

@ -1,4 +1,4 @@
#!/usr/bin/make -f #!/usr/bin/env -S make -f
# #
# \brief Tool for preparing the Qt5 tool-chain for the Genode OS Framework # \brief Tool for preparing the Qt5 tool-chain for the Genode OS Framework
# \author Christian Prochaska # \author Christian Prochaska