From: Wayne Davison Date: Fri, 7 Oct 2022 05:18:48 +0000 (-0700) Subject: Change fgrep to grep. X-Git-Tag: v3.2.7~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ba434de5c886b32103e6c265fe88c17e78945ee;p=thirdparty%2Frsync.git Change fgrep to grep. --- diff --git a/packaging/pkglib.py b/packaging/pkglib.py index 6f5557aa..c4c5741d 100644 --- a/packaging/pkglib.py +++ b/packaging/pkglib.py @@ -176,7 +176,7 @@ def mandate_gensend_hook(): print('Creating hook file:', hook) cmd_chk(['./rsync', '-a', 'packaging/pre-push', hook]) else: - ct = cmd_txt(['fgrep', 'make gensend', hook], discard='output') + ct = cmd_txt(['grep', 'make gensend', hook], discard='output') if ct.rc: die('Please add a "make gensend" into your', hook, 'script.')