diff options
author | Phil Sutter <phil@nwl.cc> | 2021-11-02 03:24:58 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2021-11-04 02:09:56 +0100 |
commit | ebccb6488061feeb5c10e6c0179a5dcc1b89944a (patch) | |
tree | b9fde09ca940b982cd0bb93f96b29be742f0ba80 /package/lvm/patches/patch-make_tmpl_in | |
parent | 5d0e5231fae54be06322e27f784a63d8f9571776 (diff) |
lvm: Update to version 2.02.188
Drop all patches while doing so, seems to work just fine without. New
dependency is libaio.
Also add a dependency on BLK_DEV_DM kernel symbol.
Note the backported patch from upstream fixing for libc implementations
without symbol versioning support which caused a segfault in cryptsetup
due to recursive calls to dm_task_get_info_base().
Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'package/lvm/patches/patch-make_tmpl_in')
-rw-r--r-- | package/lvm/patches/patch-make_tmpl_in | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/package/lvm/patches/patch-make_tmpl_in b/package/lvm/patches/patch-make_tmpl_in deleted file mode 100644 index 7ddf32071..000000000 --- a/package/lvm/patches/patch-make_tmpl_in +++ /dev/null @@ -1,28 +0,0 @@ ---- LVM2.2.02.177.orig/make.tmpl.in 2017-12-18 21:44:35.000000000 +0100 -+++ LVM2.2.02.177/make.tmpl.in 2018-06-07 03:09:58.000000000 +0200 -@@ -468,7 +468,8 @@ $(LIB_SHARED): $(LIB_SHARED).$(LIB_VERSI - CLEAN_TARGETS += $(LDDEPS) .exported_symbols_generated - - install_lib_shared: $(LIB_SHARED) -- $(INSTALL_PROGRAM) -D $< $(libdir)/$(<F).$(LIB_VERSION) -+ $(INSTALL_DIR) $(libdir) -+ $(INSTALL_PROGRAM) $< $(libdir)/$(<F).$(LIB_VERSION) - $(INSTALL_DIR) $(usrlibdir) - $(LN_S) -f $(USRLIB_RELPATH)$(<F).$(LIB_VERSION) $(usrlibdir)/$(<F) - -@@ -476,11 +477,13 @@ install_lib_shared: $(LIB_SHARED) - # and for compatibility links in libdir are created - # when the code is fixed links could be removed. - install_dm_plugin: $(LIB_SHARED) -- $(INSTALL_PROGRAM) -D $< $(libdir)/device-mapper/$(<F) -+ $(INSTALL_DIR) $(libdir) -+ $(INSTALL_PROGRAM) $< $(libdir)/device-mapper/$(<F) - $(LN_S) -f device-mapper/$(<F) $(libdir)/$(<F) - - install_lvm2_plugin: $(LIB_SHARED) -- $(INSTALL_PROGRAM) -D $< $(libdir)/lvm2/$(<F) -+ $(INSTALL_DIR) $(libdir) -+ $(INSTALL_PROGRAM) $< $(libdir)/lvm2/$(<F) - $(LN_S) -f lvm2/$(<F) $(libdir)/$(<F) - $(LN_S) -f $(<F) $(libdir)/$(<F).$(LIB_VERSION) - endif |