Use grep instead of fgrep and egrep

The latter are deprecated and shouldn't be used any longer.

No real changes.

Closes #23537.
This commit is contained in:
Vadim Zeitlin 2023-05-10 19:42:47 +02:00
parent 54a8a6ac16
commit a0e3f1e1ab
7 changed files with 8 additions and 11 deletions

View file

@ -34645,7 +34645,7 @@ distdir: @GUIDIST@
@# in other dist targets.
find $(DISTDIR) \( -name "CVS" -o -name ".cvsignore" -o -name "*.dsp" -o -name "*.dsw" -o -name "*.hh*" -o \
\( -name "makefile.*" -a ! -name "makefile.gcc" -a ! -name "makefile.unx" \) \) \
-print | egrep -v '/samples/.*\.hh.$$' | xargs rm -rf
-print | grep -vE '/samples/.*\.hh.$$' | xargs rm -rf
dist: distdir
@cd _dist_dir && tar ch $(DISTDIRNAME) | gzip -f9 > ../$(WXARCHIVE);