1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-01 12:19:28 +00:00
freebsd/release/scripts/proflibs-make.sh

12 lines
190 B
Bash
Executable File

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