proflibs-make.sh revision 95327
1#!/bin/sh
2#
3# $FreeBSD: head/release/scripts/proflibs-make.sh 95327 2002-04-23 22:16:41Z obrien $
4#
5
6# Move the profiled libraries out to their own dist
7for i in ${RD}/trees/base/usr/lib/*_p.a; do
8	if [ -f $i ]; then
9		mv $i ${RD}/trees/proflibs/usr/lib;
10	fi;
11done
12