1997-06-21 15:42:17 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Move the profiled libraries out to their own dist
|
1998-08-30 02:52:04 +00:00
|
|
|
for i in ${RD}/trees/bin/usr/lib/${OBJFORMAT}/*_p.a; do
|
1997-06-24 21:53:33 +00:00
|
|
|
if [ -f $i ]; then
|
1998-08-30 02:52:04 +00:00
|
|
|
mv $i ${RD}/trees/proflibs/usr/lib/${OBJFORMAT};
|
1997-06-21 15:42:17 +00:00
|
|
|
fi;
|
|
|
|
done
|