mirror of https://github.com/dynup/kpatch
042cde03b3
For some reason the github version of 'make check' just started complaining about these: shellcheck kpatch/kpatch kpatch-build/kpatch-build kpatch-build/kpatch-cc In kpatch-build/kpatch-build line 455: while [[ "${filedir#$common/}" = "$filedir" ]]; do ^-----^ SC2295 (info): Expansions inside ${..} need to be quoted separately, otherwise they match as patterns. Did you mean: while [[ "${filedir#"$common"/}" = "$filedir" ]]; do In kpatch-build/kpatch-build line 460: result="${result}${filedir#$common/}" ^-----^ SC2295 (info): Expansions inside ${..} need to be quoted separately, otherwise they match as patterns. Did you mean: result="${result}${filedir#"$common"/}" In kpatch-build/kpatch-cc line 26: relobj=${obj##$KPATCH_GCC_SRCDIR/} ^----------------^ SC2295 (info): Expansions inside ${..} need to be quoted separately, otherwise they match as patterns. Did you mean: relobj=${obj##"$KPATCH_GCC_SRCDIR"/} For more information: https://www.shellcheck.net/wiki/SC2295 -- Expansions inside ${..} need to b... make: *** [Makefile:70: check] Error 1 Error: Process completed with exit code 2. Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> |
||
---|---|---|
.. | ||
gcc-plugins | ||
insn | ||
Makefile | ||
create-diff-object.c | ||
create-klp-module.c | ||
create-kpatch-module.c | ||
kpatch-build | ||
kpatch-cc | ||
kpatch-elf.c | ||
kpatch-elf.h | ||
kpatch-intermediate.h | ||
kpatch.h | ||
list.h | ||
log.h | ||
lookup.c | ||
lookup.h |