summaryrefslogtreecommitdiffstats
path: root/release/scripts/proflibs-make.sh
blob: aff0f3af2230a086863621e3f9f2d15f965026bf (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