Re: [proaudio] svn.drobilla.net |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/proaudio Archives
]
- To: proaudio@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [proaudio] svn.drobilla.net
- From: Daniel Johnson <il.basso.buffo@xxxxxxxxx>
- Date: Mon, 5 Oct 2009 11:07:46 -0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=G3JAyldKukCk5GtNv94xxStoBDg1dx8dd35WKaDFA0Q=; b=Au6umKncd3wralQM6495VYXUcIWDQoVp6weIxdfvFdh72x2gKoH6u3dd4tArR3Jmrs OAea79qu+bGIbwuT3y/Xt5/aMwDk8QKwfINwaNkLBZ5mFKbqQAG3C4oN/xufrE3KJb7o n8CeL75w/bjMNqLnGsNrehT9BBl7crjF96JPM=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=RdX8RztEI8QiyUWsoL/+hJodTMJeTVp10oPRGy4pA8ON8d9UcxTs8x6D9uKvjqqXxW ga3OdLjwAXFdRT7+t0V0tefdSDVlbGJDwJ5rocBmq6X23Pu/mUkRQAHhevqCJklkNWBz ELIUoT5/vtPz6UuS37S85ZTkWGTW4/B5MHKH8=
On Mon, Oct 5, 2009 at 10:58 AM, Matt Henley <nwmatt@xxxxxxxxx> wrote:
> I have had the best luck with just installing from svn... However, I
> used emerge this time at the request of Gavin (previously in this
> thread) who asked that the updated ebuilds be tested. I don't know
> what sed is (except what I just googled), but if I wanted to remove
> the call to ldconfig, which waf file (no scons) would i look in?
Try 'grep -lr ldconfig *' to find any file that mentions ldconfig.
You may have to do this after you run waf configure by hand.
In the context of an ebuild, let's say that the file I found via grep
is called wscript, in the top source directory. I'd add this line
between waf configure and waf build in the ebuild:
sed -i -e 's:/sbin/ldconfig:/bin/true:g' ${S}/wscript