Working around default-names removal #490
Unanswered
nicolasnoble
asked this question in
Tap maintenance and brew development
Replies: 2 comments 4 replies
-
From
Why don't you add this to your |
Beta Was this translation helpful? Give feedback.
0 replies
-
How do I safely access this path? Is the prefix available somewhere as a variable? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So I've been trying to create a formula for building a mips gcc cross compiler for brew, and I'm blocked due to the removal of default-names.
Building gcc requires gnu sed being called sed, but then my formula that's trying to use
depends_on "gnu-sed" => "default-names"
isn't working.Long story short, my build fails constantly, and I have no idea how to solve it given how I need
sed
to begsed
at build time given howdefault-names
is no longer a thing.Current work in progress for this effort:
grumpycoders/pcsx-redux#314
Current more global bugs that are likely never going to be solved, describing why it requires sed to be gnu sed, and why I really need "sed" to be "gsed" in my formula:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62097
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66032
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235293
Beta Was this translation helpful? Give feedback.
All reactions