From 8d1ed3fe6d80804450ab345ec62e68d4732a7a01 Mon Sep 17 00:00:00 2001 From: Matt Housh Date: Fri, 3 Feb 2023 10:32:32 -0600 Subject: [PATCH] Replaced egrep call, bumped to version 5.40.10 --- Makefile | 4 ++-- pkgmk.in | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index cd246cbe..dfc99591 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # @@ -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 diff --git a/pkgmk.in b/pkgmk.in index 9bf381d7..edc2ded8 100644 --- a/pkgmk.in +++ b/pkgmk.in @@ -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:"