1997-06-21 15:42:17 +00:00
|
|
|
#!/bin/sh
|
2001-04-08 23:09:21 +00:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
1997-06-21 15:42:17 +00:00
|
|
|
|
|
|
|
# Move the profiled libraries out to their own dist
|
2002-04-23 22:16:41 +00:00
|
|
|
for i in ${RD}/trees/base/usr/lib/*_p.a; do
|
2004-01-18 09:06:40 +00:00
|
|
|
mv $i ${RD}/trees/proflibs/usr/lib
|
1997-06-21 15:42:17 +00:00
|
|
|
done
|