From 6e19bf865ab79cfb8f74fcd9fc1ecb7f73fd2673 Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Tue, 3 Apr 2012 17:44:32 +0100 Subject: [PATCH] correct path --- strip_bins.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/strip_bins.sh b/strip_bins.sh index 4050041..68ced17 100644 --- a/strip_bins.sh +++ b/strip_bins.sh @@ -21,7 +21,7 @@ do fi done -if [ VERSION -eq 2 ]; then +if [ $VERSION -eq 2 ]; then for f in $prefix/mn10200/bin/* do $HOST_STRIP $f @@ -33,5 +33,5 @@ fi # strip debug info from libraries #--------------------------------------------------------------------------------- find $prefix/lib/gcc/$target -name *.a -exec $target-strip -d {} \; -find $prefix/$package/$target -name *.a -exec $target-strip -d {} \; +find $prefix/$target -name *.a -exec $target-strip -d {} \;