diff options
author | Prakash Surya <[email protected]> | 2013-08-26 09:23:09 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2013-10-29 10:30:43 -0700 |
commit | 37fd6e00a699aff3fea24199497e9484cd218a84 (patch) | |
tree | b3bd498651ddc032a1f4e3f363ca7ad3f201b07c /scripts/Makefile.am | |
parent | c12e3a594a49ed10b7870d950c1f336f78f136cb (diff) |
Add script to fix file names in upstream patches
Added a simple sed script to do a search and replace on the Illumos
ZFS file names and replace them with the ZFS on Linux equivalent.
Example usage:
# Replace Illumos paths with Linux paths
$ ./scripts/zfs2zol-patch.sed arc.c.patch > arc.c.patch.linux
# Ensure the script worked as expected
$ diff arc.c.patch arc.c.patch.linux
# Apply the patch using Linux paths
$ patch -p1 < arc.c.patch.linux
Signed-off-by: Richard Yao <[email protected]>
Signed-off-by: Prakash Surya <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #1679
Diffstat (limited to 'scripts/Makefile.am')
-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 08a32b439..39d94ee82 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = zpool-config zpios-test zpios-profile -EXTRA_DIST = dkms.mkconf dkms.postinst kmodtool +EXTRA_DIST = dkms.mkconf dkms.postinst kmodtool zfs2zol-patch.sed pkgdatadir = $(datadir)/@PACKAGE@ dist_pkgdata_SCRIPTS = \ |