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.
8 lines
189 B
8 lines
189 B
10 years ago
|
#!/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
|