Replaced egrep call, bumped to version 5.40.10

This commit is contained in:
Matt Housh 2023-02-03 10:32:32 -06:00
parent b7506660aa
commit 8d1ed3fe6d
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ BINDIR = /usr/bin
MANDIR = /usr/share/man
ETCDIR = /etc
VERSION = 5.40.9
VERSION = 5.40.10
NAME = pkgutils-$(VERSION)
CXXFLAGS += -DNDEBUG

View File

@ -514,7 +514,7 @@ check_footprint() {
sed 's/^-/MISSING /g' > $FILE.footprint.diff
if [ -s $FILE.footprint.diff ]; then
if [ "$PKGMK_IGNORE_NEW" = "yes" ] && \
[ -z "$(egrep -l ^MISSING $FILE.footprint.diff)" ] ; then
[ -z "$(grep -El ^MISSING $FILE.footprint.diff)" ] ; then
info "New files found:"
else
error "Footprint mismatch found:"