Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-devhelp
On 05/27/2012 04:21 PM, Nikos Chantziaras wrote:
> I have this in /etc/portage/package.env:
>
> app-emulation/emul-linux-x86-soundlibs soundlibs-delete-jack.conf
>
> and this in /etc/portage/env/soundlibs-delete-jack.conf:
>
> if [ "${EBUILD_PHASE}" == "src_prepare"] ;
> then
> rm -rf "${S}"/usr/lib32/jack
> rm -f $(find "${S}" -name 'libjack*')
> fi
>
You already figured out how to get it working, but for posterity, this
is a stupid shell relic:
if [ 1 == 1 ]; then
# Works
fi
if [ 1 == 1]; then
# Crashes
fi
|
|