View previous topic :: View next topic |
Author |
Message |
trippels Tux's lil' helper
Joined: 24 Nov 2010 Posts: 137 Location: Berlin
|
Posted: Tue Jul 02, 2013 4:16 pm Post subject: How to tell portage to ignore /usr/local/bin PATH? |
|
|
I have llvm-3.4 (tip) installed in /usr/local/bin and llvm-3.3 in /usr/bin .
When I emerge an ebuild that looks for llvm-config
portage always picks up /usr/local/bin/llvm-config .
How can I tell portage to ignore the /usr/local/bin/ PATH? |
|
Back to top |
|
|
trippels Tux's lil' helper
Joined: 24 Nov 2010 Posts: 137 Location: Berlin
|
Posted: Tue Jul 02, 2013 4:37 pm Post subject: |
|
|
Ugh, it's hardcoded in pym/portage/package/ebuild/doebuild.py
Code: | 189 for x in ("usr/local/sbin", "usr/local/bin", "usr/sbin", "usr/bin", "sbin", "bin"): |
Changing this to:
Code: | 189 for x in ("usr/sbin", "usr/bin", "sbin", "bin"): |
fixes the issue... |
|
Back to top |
|
|
Naib Watchman
Joined: 21 May 2004 Posts: 6069 Location: Removed by Neddy
|
Posted: Tue Jul 02, 2013 8:18 pm Post subject: |
|
|
submit a bug to have that as an option _________________ #define HelloWorld int
#define Int main()
#define Return printf
#define Print return
#include <stdio>
HelloWorld Int {
Return("Hello, world!\n");
Print 0; |
|
Back to top |
|
|
|