8 lines
209 B
Bash
Executable file
8 lines
209 B
Bash
Executable file
#!/bin/bash
|
|
|
|
[ "$1" = "fetch" ] && exit 0
|
|
|
|
strip --strip-debug /tools/lib/*
|
|
/usr/bin/strip --strip-unneeded /tools/{,s}bin/*
|
|
rm -rf /tools/{,share}/{info,man,doc}
|
|
find /tools/{lib,libexec} -name \*.la -delete
|