xref: /OK3568_Linux_fs/buildroot/package/aufs-util/0002-no-check-ver.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1Makefile: do not check version
2
3The aufs-util package tries to ensure that its version is compatible
4with the one in the running kernel. However, this test is flawed: the
5version string in the aufs4x branch for aufs-util is aufs3.x, so it does
6not match the version in the kernel when it is aufs4.x.
7
8Disengage this check, ion the assumption the user knows what he is
9doing.
10
11Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
12
13diff --git a/Makefile b/Makefile
14--- a/Makefile
15+++ b/Makefile
16@@ -62,7 +62,7 @@
17 $(foreach v, CPPFLAGS CFLAGS INSTALL Install ManDir LibUtilHdr, \
18 	$(eval MAKE += ${v}="$${${v}}"))
19
20-all: ver_test ${Man} ${Bin} ${Etc}
21+all: ${Man} ${Bin} ${Etc}
22 	${MAKE} -C libau $@
23 	ln -sf ./libau/libau*.so .
24 	$(call MakeFHSM, $@)
25