mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-12 06:15:29 +01:00
Fix binutils manpage deletion
binutils manpages were, incorrectly, not deleted - this causes issues with reproducibility in pass2
This commit is contained in:
parent
99bad05173
commit
c063a86bb4
3 changed files with 4 additions and 4 deletions
|
|
@ -69,7 +69,7 @@ src_prepare() {
|
|||
./bfd/mep-relocs.pl
|
||||
|
||||
# Manpages
|
||||
find . -type f -name '*.1' -or -name '*.man' -delete
|
||||
find . -type f \( -name '*.1' -or -name '*.man' \) -delete
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ src_prepare() {
|
|||
./bfd/mep-relocs.pl
|
||||
|
||||
# Manpages
|
||||
find . -type f -name '*.1' -or -name '*.man' -delete
|
||||
find . -type f \( -name '*.1' -or -name '*.man' \) -delete
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue