freebsd-dev/release/scripts/proflibs-make.sh

10 lines
164 B
Bash
Executable File

#!/bin/sh
#
# $FreeBSD$
#
# Move the profiled libraries out to their own dist
for i in ${RD}/trees/base/usr/lib/*_p.a; do
mv $i ${RD}/trees/proflibs/usr/lib
done