File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -569,4 +569,4 @@ depend:
569
569
@$(MKDEP ) -c " $( CC) " -m " $( DEPENDENCY_CFLAG) " -s " $( srcdir) " $(DEFS ) $(INCLS ) $(SRC ) $(LIBNETDISSECT_SRC )
570
570
571
571
shellcheck :
572
- shellcheck -f gcc -e SC2006 build.sh build_matrix.sh build_common.sh .ci-coverity-scan-build.sh
572
+ shellcheck -f gcc -e SC2006 autogen.sh build.sh build_matrix.sh build_common.sh .ci-coverity-scan-build.sh
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ maj=`echo "$AUTORECONFVERSION" | cut -d. -f1`
8
8
min=` echo " $AUTORECONFVERSION " | cut -d. -f2`
9
9
# The minimum required version of autoconf is currently 2.69.
10
10
if [ " $maj " = " " ] || [ " $min " = " " ] || \
11
- [ " $maj " -lt 2 ] || [ " $maj " -eq 2 -a " $min " -lt 69 ]; then
11
+ [ " $maj " -lt 2 ] || { [ " $maj " -eq 2 ] && [ " $min " -lt 69 ]; } ; then
12
12
cat >&2 << -EOF
13
13
Please install the 'autoconf' package version 2.69 or later.
14
14
If version 2.69 or later is already installed and there is no
You can’t perform that action at this time.
0 commit comments