mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 10:11:09 -04:00
8 lines
200 B
Bash
Executable file
8 lines
200 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Move the profiled libraries out to their own dist
|
|
for i in ${RD}/trees/bin/usr/lib/${BINFORMAT}/*_p.a; do
|
|
if [ -f $i ]; then
|
|
mv $i ${RD}/trees/proflibs/usr/lib/${BINFORMAT};
|
|
fi;
|
|
done
|