lol

xfsprogs: Extend patch to make xfs_mdrestore and xfs_quota work

Previously these tools were failing to start with:

xfs_mdrestore: error while loading shared libraries: libxfs.so.0: \
cannot open shared object file: No such file or directory
xfs_quota: error while loading shared libraries: libxcmd.so.0: \
cannot open shared object file: No such file or directory

Extend the 4.2.0-sharedlibs.patch to make those programs work as well.

+20
+20
pkgs/tools/filesystems/xfsprogs/4.2.0-sharedlibs.patch
··· 78 78 79 79 80 80 ifeq ($(HAVE_BUILDDEFS), yes) 81 + --- xfsprogs-4.2.0/quota/Makefile 82 + +++ xfsprogs-4.2.0/quota/Makefile 83 + @@ -16,7 +16,6 @@ LSRCFILES = $(shell echo $(PCFILES) | sed -e "s/$(PKG_PLATFORM).c//g") 84 + 85 + LLDLIBS = $(LIBXCMD) 86 + LTDEPENDENCIES = $(LIBXCMD) 87 + -LLDFLAGS = -static 88 + 89 + ifeq ($(ENABLE_READLINE),yes) 90 + LLDLIBS += $(LIBREADLINE) $(LIBTERMCAP) 91 + --- xfsprogs-4.2.0/mdrestore/Makefile 92 + +++ xfsprogs-4.2.0/mdrestore/Makefile 93 + @@ -10,7 +10,6 @@ CFILES = xfs_mdrestore.c 94 + 95 + LLDLIBS = $(LIBXFS) $(LIBRT) $(LIBPTHREAD) $(LIBUUID) 96 + LTDEPENDENCIES = $(LIBXFS) 97 + -LLDFLAGS = -static 98 + 99 + default: depend $(LTCOMMAND) 100 +