summaryrefslogtreecommitdiffstats
path: root/release/scripts
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1998-08-16 00:57:08 +0000
committerjkh <jkh@FreeBSD.org>1998-08-16 00:57:08 +0000
commitae29a59a4538fbc72075d2f0fc54e70fc5f76136 (patch)
treed17f0eb33635bb028b25bd77c2f7159f285e62d5 /release/scripts
parent0277aae3504e6e7ad4e34f95082b553313dd607e (diff)
downloadFreeBSD-src-ae29a59a4538fbc72075d2f0fc54e70fc5f76136.zip
FreeBSD-src-ae29a59a4538fbc72075d2f0fc54e70fc5f76136.tar.gz
Add BINFORMAT awareness.
Diffstat (limited to 'release/scripts')
-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 7a60eb3..b7da8ab 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
OpenPOWER on IntegriCloud