Add BINFORMAT awareness.

This commit is contained in:
Jordan K. Hubbard 1998-08-16 00:57:08 +00:00
parent 5014fe3b58
commit 5e95012499
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38352

View File

@ -1,8 +1,8 @@
#!/bin/sh
# Move the profiled libraries out to their own dist
for i in ${RD}/trees/bin/usr/lib/*_p.a; do
for i in ${RD}/trees/bin/usr/lib/${BINFORMAT}/*_p.a; do
if [ -f $i ]; then
mv $i ${RD}/trees/proflibs/usr/lib;
mv $i ${RD}/trees/proflibs/usr/lib/${BINFORMAT};
fi;
done