diff options
author | Brian Behlendorf <[email protected]> | 2023-10-10 13:31:15 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2023-10-10 19:19:09 -0700 |
commit | 04186d33be72b8cdb539f1428682b7d3ca3f7b5e (patch) | |
tree | 9fb4fe88b2068a5c06d57ff7626eed13b6bd7031 | |
parent | 810fc49a3eb16647c905d02bd4f945e1e4332251 (diff) |
CI: Move perl script to dist_noinst_DATA
Everything listed in dist_noinst_SCRIPTS is assumed to be a shell
script, this generates a shellcheck SC1071 error since perl is not
supported. Move update_authors.pl to dist_noinst_DATA with the
other perl scripts.
Reviewed-by: Tony Hutter <[email protected]>
Reviewed-by: Rob N <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #15392
-rw-r--r-- | scripts/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am index 17f24ff6a..95640727a 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -9,7 +9,6 @@ dist_noinst_SCRIPTS = \ %D%/man-dates.sh \ %D%/mancheck.sh \ %D%/paxcheck.sh \ - %D%/update_authors.pl \ %D%/zfs-tests-color.sh scripts_scripts = \ @@ -28,6 +27,7 @@ endif dist_noinst_DATA += \ %D%/cstyle.pl \ %D%/enum-extract.pl \ + %D%/update_authors.pl \ %D%/zfs2zol-patch.sed \ %D%/zol2zfs-patch.sed |