summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Schwartz2020-06-18 10:09:02 -0400
committerEli Schwartz2020-06-18 11:12:41 -0400
commitd86490c1794081f41fa44d85bc7f32aa0d0fe90d (patch)
treee37788032061edcff12afc32dfe218748b29cbac
parent55b557637325f5c8c47097fcbe3dfcdfaa8606e4 (diff)
downloadaur-d86490c1794081f41fa44d85bc7f32aa0d0fe90d.tar.gz
zfs-dkms*/: fix configure.ac modifications to allow all module/ files
We want the toplevel Makefile/zfs.release and we *also* want all files in module/ to be configured, because that is the only subdirectory we use. It just happened that module/ used to only have Makefile.in to configure, so only permitting Makefiles which may or may not be prefixed with 'module/' worked. The current upstream master now has a Kbuild.in file, though, which broke this clumsy hack. Update to use a more beautiful variant of clumsy hack instead.
-rw-r--r--PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index a70d17188149..713b8ca3ea9f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -39,7 +39,7 @@ prepare() {
sed -ri "/AC_CONFIG_FILES/,/]\)/{
/AC_CONFIG_FILES/n
/]\)/n
-/^\s*(module\/.*)?(zfs.release|Makefile)/!d
+/^\s*(module\/.*|zfs.release|Makefile)/!d
}" configure.ac
autoreconf -fi