mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
9 lines
200 B
Bash
Executable File
9 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Move the profiled libraries out to their own dist
|
|
for i in ${RD}/trees/bin/usr/lib/${OBJFORMAT}/*_p.a; do
|
|
if [ -f $i ]; then
|
|
mv $i ${RD}/trees/proflibs/usr/lib/${OBJFORMAT};
|
|
fi;
|
|
done
|