-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upd: stripping and ownership; rmv: porg, unnecessary.
- Loading branch information
mssx86
committed
Sep 23, 2019
1 parent
66f965c
commit dc48ed5
Showing
4 changed files
with
13 additions
and
90 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# 1 >> remove debug symbols with: | ||
/usr/bin/strip --strip-debug /tools/lib/* | ||
/usr/bin/strip --strip-unneeded /tools/{,s}bin/* | ||
|
||
# 2 >> remove documentation and manual pages with: | ||
rm -rf /tools/{,share}/{info,man,doc} | ||
|
||
# 3 >> remove .la files as they're unneeded with: | ||
find /tools/{lib,libexec} -name \*.la -delete | ||
|
||
# 4 >> change the ownership of /tools dir to root | ||
# since there won't be a mlfs user in chroot | ||
chown -R root:root $MLFS/tools |
Empty file.
This file was deleted.
Oops, something went wrong.