simlify strip command

This commit is contained in:
Stephan Raue 2009-05-17 17:26:44 +02:00
parent 8d658c2730
commit 98db7f1f50

View File

@ -187,6 +187,12 @@ kernel_path() {
ls -d $ROOT/$BUILD/linux*
}
strip_libs() {
if [ "$DEBUG" = no ]; then
$STRIP `find $1 -name "*.so*"`
fi
}
require_glibc() {
if [ "$TARGET_LIBC" != glibc ]; then
echo "$1 requires glibc, aborting."