mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
9 lines
164 B
Bash
Executable file
9 lines
164 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# Move the profiled libraries out to their own dist
|
|
for i in ${RD}/trees/base/usr/lib/*_p.a; do
|
|
mv $i ${RD}/trees/proflibs/usr/lib
|
|
done
|