01df2ec328
This is done since it contains much more than /bin, and also gets in the way when making a combined install+fixit CD. OK'ed by: jkh
12 lines
191 B
Bash
Executable File
12 lines
191 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
|
|
if [ -f $i ]; then
|
|
mv $i ${RD}/trees/proflibs/usr/lib;
|
|
fi;
|
|
done
|