summaryrefslogtreecommitdiffstats
path: root/release/scripts/proflibs-make.sh
blob: e03b8b2bb551d0ed1b7e3819370a64f821717109 (plain)
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/base/usr/lib/*_p.a; do
	if [ -f $i ]; then
		mv $i ${RD}/trees/proflibs/usr/lib;
	fi;
done
OpenPOWER on IntegriCloud