]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - release/scripts/proflibs-make.sh
This commit was generated by cvs2svn to compensate for changes in r51292,
[FreeBSD/FreeBSD.git] / release / scripts / proflibs-make.sh
1 #!/bin/sh
2
3 # Move the profiled libraries out to their own dist
4 for i in ${RD}/trees/bin/usr/lib/*_p.a; do
5         if [ -f $i ]; then
6                 mv $i ${RD}/trees/proflibs/usr/lib;
7         fi;
8 done