Summary: | sys-block/fio does not respect LDFLAGS | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Diego Elio Pettenò (RETIRED) <flameeyes> |
Component: | New packages | Assignee: | Robin Johnson <robbat2> |
Status: | RESOLVED FIXED | ||
Severity: | QA | ||
Priority: | High | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Bug Depends on: | |||
Bug Blocks: | 331933 | ||
Attachments: |
Build log
Patch to fio-1.34.ebuild to fix LDFLAGS issue and avoid duplicate link call |
Description
Diego Elio Pettenò (RETIRED)
2010-09-01 13:55:52 UTC
Created attachment 245625 [details]
Build log
Created attachment 245828 [details, diff] Patch to fio-1.34.ebuild to fix LDFLAGS issue and avoid duplicate link call This patch adds a sed call to fix the LDFLAGS issue reported in comment #0. While testing, I noticed that fio is linked again during the install phase. This is because the dependency rules specify that 'depend' has no prerequisites and that it is a prerequisite of fio. Thus, depend is always rebuilt, and everything which depends on it must then be rebuilt because 'depend' is now newer. As a minimal change, I simply delete the rule that makes 'depend' a prerequisite of 'fio'. Fixed with permission from Robin. |