freebsd-dev/release/scripts/proflibs-make.sh
Jordan K. Hubbard bcd1c7cec0 Yeesh! Some of this stuff I yanked out of the makefiles without
reviewing closely enough (and, as a result, proflibs and dict suffered).
Fix.
1997-06-24 21:53:33 +00:00

9 lines
174 B
Bash
Executable File

#!/bin/sh
# 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