module-setup: re-fix 99kdumpbase network dependency
In commit a431a7e354
(module-setup: fix 99kdumpbase network dependency),
the statement for OR operation is still wrong.
The OR condition statement should be: if a || b
Signed-off-by: Pingfan Liu <piliu@redhat.com>
Acked-by: Kairui Song <kasong@redhat.com>
This commit is contained in:
parent
72ed97683f
commit
882b920c2f
@ -40,7 +40,7 @@ depends() {
|
|||||||
_dep="$_dep drm"
|
_dep="$_dep drm"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if is_generic_fence_kdump -o is_pcs_fence_kdump; then
|
if is_generic_fence_kdump || is_pcs_fence_kdump; then
|
||||||
_dep="$_dep network"
|
_dep="$_dep network"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user