blob: 19bd15c0b044bc00b8e38b9497eedfdec1a368ea (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Move the profiled libraries out to their own dist
for i in ${RD}/trees/bin/usr/lib/${OBJFORMAT}/*_p.a; do
if [ -f $i ]; then
mv $i ${RD}/trees/proflibs/usr/lib/${OBJFORMAT};
fi;
done
|