Summary: | dev-lang/luajit-2.0.0_beta7 does not respect CFLAGS in linking command | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Julian Ospald <hasufell> |
Component: | New packages | Assignee: | Rafael Martins (RETIRED) <rafaelmartins> |
Status: | RESOLVED WONTFIX | ||
Severity: | normal | ||
Priority: | Normal | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Julian Ospald
2012-12-31 21:58:51 UTC
solution: - # removing strip - sed -i -e '/$(Q)$(TARGET_STRIP)/d' src/Makefile \ - || die "failed to remove forced strip" + # removing strip and respect CFLAGS + sed -i -e '/$(Q)$(TARGET_STRIP)/d' \ + -e "s/^LDOPTIONS=/LDOPTIONS= ${CFLAGS}/" \ + src/Makefile || die "failed to remove forced strip" minor issue according to QA, wontfix unless someone reports an actual problem |