* [gentoo-dev] Re: vim-6.0-r2.ebuild - no gui?!
[not found] <E15vlrh-0006qX-00.2001-10-22-21-40-06@imailg3.svr.pol.co.uk>
@ 2001-10-22 15:01 ` Aron Griffis
0 siblings, 0 replies; only message in thread
From: Aron Griffis @ 2001-10-22 15:01 UTC (permalink / raw
To: Viktor Lakics; +Cc: gentoo-dev
Hello Viktor,
Viktor Lakics wrote: [Mon Oct 22 2001, 03:47:23PM EST]
> I think something is wrong with my make.conf. I have python, x, gtk
> etc. in make.conf (attached) and output from ./configure vim finds
> none of them...
The problem is that you're setting USE multiple times in your make.conf.
Rather than do that, you need to set it once to contain all the settings
you want.
In other words, instead of doing something like this:
USE="foo bar"
USE="baz"
You need to do
USE="foo bar
baz"
Also, so you don't get tripped on this, be aware that make.conf looks
deceptively like shell syntax. It APPEARS that you could do
USE="foo bar"
USE="$USE baz"
HOWEVER, the file is not sourced by bash. It is read by a Python
program that doesn't understand the above syntax. You must set USE all
in one go...
USE="foo bar
baz"
Hope this helps. I've Cc'd this to gentoo-dev so that it might be
helpful to others. Let me know how it goes.
Aron
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2001-10-22 21:00 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <E15vlrh-0006qX-00.2001-10-22-21-40-06@imailg3.svr.pol.co.uk>
2001-10-22 15:01 ` [gentoo-dev] Re: vim-6.0-r2.ebuild - no gui?! Aron Griffis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox