0002-no-check-ver.patch 756 B

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