Skip to content

Commit 9c889bd

Browse files
committed
replace 'egrep' with 'grep -E'
This avoids the following warning with certain versions of egrep: egrep: warning: egrep is obsolescent; using grep -E GitHub: #295
1 parent e849140 commit 9c889bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ graphviz:
3838
mv $@.tmp $@
3939

4040
dotfiles.txt: graphviz
41-
find graphviz -name '*.dot' | egrep -v "(nullderefrebuildlist\.dot|^graphviz/tests/.*)$$" > $@.tmp
41+
find graphviz -name '*.dot' | grep -E -v "(nullderefrebuildlist\.dot|^graphviz/tests/.*)$$" > $@.tmp
4242
mv $@.tmp $@
4343

4444
clone-build:

0 commit comments

Comments
 (0)