mirror of
https://github.com/opnsense/src.git
synced 2026-03-21 10:20:09 -04:00
11 lines
190 B
Bash
Executable file
11 lines
190 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# 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
|