Skip to content

Commit

Permalink
Use configured EGREP variable to correctly choose "egrep" or "grep -E".
Browse files Browse the repository at this point in the history
  • Loading branch information
JMakey committed Dec 31, 2023
1 parent 74a9212 commit 1538a9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ dist-hook:
find $(distdir) -type f \( -name config.log -o -name config.status \) -exec rm -f {} \;
find $(distdir) -type d \( -name .deps -o -name autom4te.cache \) -prune -exec rm -rf {} \;
missing=0 ; \
for file in `git ls-files | egrep -v '^\.git(hub/|ignore)'` ; do \
for file in `git ls-files | $(EGREP) -v '^\.git(hub/|ignore)'` ; do \
if test ! -e $(distdir)/$$file ; then \
missing=1 ; \
echo "MISSING FROM DIST: $$file" ; \
Expand Down

0 comments on commit 1538a9f

Please sign in to comment.