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