depend: fix typo

This commit is contained in:
Michele Guerini Rocco 2023-03-30 11:05:54 +02:00
parent f169db3a70
commit 92f0cad3c1
Signed by: rnhmjoj
GPG Key ID: BFBAF4C975F76450

2
depend
View File

@ -9,7 +9,7 @@ test -f "${1%.o}.d" || exit 1
# Check whether $1 contains substring $2
contains(){ test "${1#*$2}" != "$1"; }
# Walk the dependency graph (consinting of the set of all .d files)
# Walk the dependency graph (consisting of the set of all .d files)
# and output the visited nodes (objects).
walk_dag(){
while read -r line; do