diff options
author | Arvind Sankar <[email protected]> | 2020-06-22 17:30:40 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2020-06-24 18:20:18 -0700 |
commit | 75138073208674967d0fb238f1b6210da224db36 (patch) | |
tree | f145d24bcc6be2c9aea039675cf276a9d7959f5b /contrib/initramfs/hooks | |
parent | 5ca349f95d836a2a59aceaa42715349749a43865 (diff) |
Drop unnecessary srcdir paths
There's no need to specify the srcdir explicitly in _HEADERS and
EXTRA_DIST.
Reviewed-by: Ryan Moeller <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Arvind Sankar <[email protected]>
Closes #10493
Diffstat (limited to 'contrib/initramfs/hooks')
-rw-r--r-- | contrib/initramfs/hooks/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/initramfs/hooks/Makefile.am b/contrib/initramfs/hooks/Makefile.am index 9b20c080a..8da1c4835 100644 --- a/contrib/initramfs/hooks/Makefile.am +++ b/contrib/initramfs/hooks/Makefile.am @@ -5,8 +5,8 @@ hooks_SCRIPTS = \ zfsunlock EXTRA_DIST = \ - $(top_srcdir)/contrib/initramfs/hooks/zfs.in \ - $(top_srcdir)/contrib/initramfs/hooks/zfsunlock.in + zfs.in \ + zfsunlock.in $(hooks_SCRIPTS):%:%.in Makefile -$(SED) -e 's,@sbindir\@,$(sbindir),g' \ |