freebsd_amp_hwpstate/release/scripts/proflibs-make.sh

9 lines
174 B
Bash
Raw Normal View History

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