Um 19:54 Uhr am 19.10.20 schrieb Sven Hartge:
> If I add the switch "-B" to the make command in gen_compat_def I can
> reliably get the test to work correctly even on the systems with the older
> filesystem:
>
> cmd="make -s -B -C $KDIR M=$PWD modules"
I locally rebuild the iptables-netflow packages with the attached patch
applied and this fixes this problem for me.
Grüße,
Sven.
(This is like #631245 all over again.)
--- a/gen_compat_def
+++ b/gen_compat_def
@@ -26,7 +26,7 @@
cat > test.c
echo obj-m = test.o > Makefile
- cmd="make -s -C $KDIR M=$PWD modules"
+ cmd="make -s -B -C $KDIR M=$PWD modules"
echo "$cmd" > log
if $cmd >> log 2>&1; then
[ "$2" ] && echo "// $2 is declared ${3:+in <$3>}"