mirror of
https://github.com/RomainClaret/lfs-7.8.git
synced 2025-07-25 15:03:03 +00:00
9 lines
175 B
Bash
9 lines
175 B
Bash
#!/bin/bash
|
|
set lib
|
|
for lib in lib{gmp,mpfr,mpc}.la;
|
|
do
|
|
echo $lib: $(if find /usr/lib* -name $lib|
|
|
grep -q $lib;then :;else echo not;fi) found
|
|
done
|
|
unset lib
|