aboutsummaryrefslogtreecommitdiff
path: root/release/scripts/proflibs-make.sh
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1998-08-16 00:57:08 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1998-08-16 00:57:08 +0000
commit5e95012499bd25245cb2a812230a444a69d92219 (patch)
tree27714fec5daef86e3aac6d14ce263b2f6b5dfbc0 /release/scripts/proflibs-make.sh
parent5014fe3b5845ccb36fc355e17f35cf2054e934b2 (diff)
downloadsrc-5e95012499bd25245cb2a812230a444a69d92219.tar.gz
src-5e95012499bd25245cb2a812230a444a69d92219.zip
Add BINFORMAT awareness.
Notes
Notes: svn path=/head/; revision=38352
Diffstat (limited to 'release/scripts/proflibs-make.sh')
-rwxr-xr-xrelease/scripts/proflibs-make.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/proflibs-make.sh b/release/scripts/proflibs-make.sh
index 7a60eb31e183..b7da8ab365b0 100755
--- a/release/scripts/proflibs-make.sh
+++ b/release/scripts/proflibs-make.sh
@@ -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