Deleted Added
full compact
proflibs-make.sh (75328) proflibs-make.sh (95327)
1#!/bin/sh
2#
1#!/bin/sh
2#
3# $FreeBSD: head/release/scripts/proflibs-make.sh 75328 2001-04-08 23:09:21Z obrien $
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
4#
5
6# Move the profiled libraries out to their own dist
7for i in ${RD}/trees/bin/usr/lib/*_p.a; do
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
8 if [ -f $i ]; then
9 mv $i ${RD}/trees/proflibs/usr/lib;
10 fi;
11done