Created
March 8, 2017 10:32
-
-
Save alayek/5c865a072287174e6813e9824a71be44 to your computer and use it in GitHub Desktop.
Check libraries before LFS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment