mirror of https://github.com/KLayout/klayout.git
Bugfixed dependency analysis
This commit is contained in:
parent
da3452aa17
commit
9efe4e9e71
|
|
@ -254,8 +254,9 @@ while [ "$new_libs" != "" ]; do
|
||||||
objdump -p $l | grep "DLL Name:" | sed 's/.*DLL Name: *//' >>$tmp_libs
|
objdump -p $l | grep "DLL Name:" | sed 's/.*DLL Name: *//' >>$tmp_libs
|
||||||
done
|
done
|
||||||
echo ""
|
echo ""
|
||||||
new_libs=$(cat $tmp_libs | sort -u)
|
libs=$(cat $tmp_libs | sort -u)
|
||||||
rm -f $tmp_libs
|
rm -f $tmp_libs
|
||||||
|
new_libs=""
|
||||||
|
|
||||||
for l in $libs; do
|
for l in $libs; do
|
||||||
if [ -e $ucrt_inst/bin/$l ] && ! [ -e $l ]; then
|
if [ -e $ucrt_inst/bin/$l ] && ! [ -e $l ]; then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue