summaryrefslogtreecommitdiffstats
path: root/release/scripts/proflibs-make.sh
blob: 7a60eb31e1834d78a81014edc982e2f64002775e (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

# Move the profiled libraries out to their own dist
for i in ${RD}/trees/bin/usr/lib/*_p.a; do
	if [ -f $i ]; then
		mv $i ${RD}/trees/proflibs/usr/lib;
	fi;
done
OpenPOWER on IntegriCloud