diff options
author | Giuseppe Di Natale <[email protected]> | 2018-04-08 19:37:22 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-04-08 19:37:22 -0700 |
commit | 7b47628acb7ef073caa5bd23372b0c9c2741caf8 (patch) | |
tree | cb3031d254d311e8656729dc70df27da04edeea7 /tests/test-runner | |
parent | 6c9af9e8f4a2901c9a5f205876b67dcc3216cbd8 (diff) |
Clean up (k)shlib and cfg file shebangs
Most kshlib files are imported by other scripts
and do not have a shebang at the top of their files.
Make all kshlib follow this convention.
Remove shebangs from cfg files as well.
Reviewed-by: loli10K <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Giuseppe Di Natale <[email protected]>
Close #7406
Diffstat (limited to 'tests/test-runner')
-rw-r--r-- | tests/test-runner/include/Makefile.am | 3 | ||||
-rw-r--r-- | tests/test-runner/include/logapi.shlib | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/tests/test-runner/include/Makefile.am b/tests/test-runner/include/Makefile.am index 7e4080249..d3eeb32de 100644 --- a/tests/test-runner/include/Makefile.am +++ b/tests/test-runner/include/Makefile.am @@ -1,6 +1,5 @@ pkgdatadir = $(datadir)/@PACKAGE@/test-runner/include -dist_pkgdata_SCRIPTS = \ - logapi.shlib dist_pkgdata_DATA = \ + logapi.shlib \ stf.shlib diff --git a/tests/test-runner/include/logapi.shlib b/tests/test-runner/include/logapi.shlib index fabfc42b1..32fc00616 100644 --- a/tests/test-runner/include/logapi.shlib +++ b/tests/test-runner/include/logapi.shlib @@ -1,4 +1,3 @@ -#!/bin/ksh -p # # CDDL HEADER START # |