You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
189 B
7 lines
189 B
#!/bin/bash
|
|
# Copied from LFS 7.6
|
|
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
|
|
|