BLFS/libs/func_dependencies: fix 2 stupid bug in function path_to
This commit is contained in:
parent
1fa0dee15b
commit
5afaf7cc48
1 changed files with 3 additions and 3 deletions
|
@ -201,12 +201,12 @@ local id_of_dep
|
||||||
local r
|
local r
|
||||||
|
|
||||||
if test "${start%.dep}" = "$seek"; then return 0; fi
|
if test "${start%.dep}" = "$seek"; then return 0; fi
|
||||||
seen="$seen$file "
|
seen="$seen$start "
|
||||||
if test -s $file; then
|
if test -s $start; then
|
||||||
{
|
{
|
||||||
while read prio_of_dep build_of_dep id_of_dep; do
|
while read prio_of_dep build_of_dep id_of_dep; do
|
||||||
if test "$prio" -lt "$prio_of_dep"; then continue; fi
|
if test "$prio" -lt "$prio_of_dep"; then continue; fi
|
||||||
if test "${seen% $id_of_dep *}" = "$seen"; then continue; fi
|
if ! test "${seen% $id_of_dep *}" = "$seen"; then continue; fi
|
||||||
if path_to ${id_of_dep}.dep $seek $prio; then return 0; fi
|
if path_to ${id_of_dep}.dep $seek $prio; then return 0; fi
|
||||||
done
|
done
|
||||||
} < $start
|
} < $start
|
||||||
|
|
Reference in a new issue