I already have cedet installed on emacs24. However, whenever I start emacs I get an error that el-get is installing cedet unsuccessfully. It takes a rather long time and fails somewhere in the make.
Why is el-get downloading cedet that already comes by default, why is it throwing an error, and how can I disable this?
At startup:
el-get waiting for "*bzr branch cedet" to complete
el-get is waiting for "make" to complete
error: el-get: make el-get could not build cedet [make EMACS=/usr/bin/emacs24]
Whenever you do
el-get-install
, el-get first tries to install the dependencies declared by the package. Before installing the package el-get adds the package to a status file (by default it is in~/.emacs.d/el-get/.status.el
) and marks it as a required package and once the package is installed the status is changed toinstalled
. On emacs startup it checks this file to get a list packages that it has to install and if any package has a status of "required" it is installed first.In your particular case, the recipe for the package
ecb
declarescedet
as a dependency. Soel-get
tried to installcedet
first and failed, since thecedet
recipe that ships withel-get
tries to installcedet
from source. This step was failing since you did not havetexinfo
installed which was needed to makecedet
. As a resultel-get
had cedet marked as required package and on every startup it was trying to install the it (and failing).You can do M-x
el-get-remove
RETname-of-offending-package
RET, so that el-get stops trying to install that package. To find out why a particular package install is failing you can always check the output of build process of package by switching to the bufferel-get: build
(I don't remember the name correctly but it is something similar).For your particular case you could avoided installing cedet altogether by instructing
el-get
to installecb
from melpa using the following recipe. Do C-hvel-get-sourcesRET to read about recipe syntaxAdd the recipe above to file named
ecb.rcp
in your personal recipe directory. I store them in~/.emacs.d/recipes
, the location doesn't matter though, just ensure that it is in first in the listel-get-recipe-path
so that your recipes get precedence over the builtin ones. Something likeshould be sufficient to ensure that your personal recipes are preferred by
el-get
.