* weird build error in my environment
@ 2008-05-30 13:50 joakim
2008-05-30 18:07 ` Glenn Morris
0 siblings, 1 reply; 3+ messages in thread
From: joakim @ 2008-05-30 13:50 UTC (permalink / raw)
To: emacs-devel
This probably only affects me in my environment, but I've never seen
this type of error and I'm curious: what could I have done to cause this?
bzr pull
make clean bootstrap
...........
Wrote /mnt/data/build/emacs-branches/emacs/branches/winprop/lisp/xt-mouse.elc
make[3]: Leaving directory `/mnt/data/build/emacs-branches/emacs/branches/winprop/lisp'
make -w compile-last
make[3]: Entering directory `/mnt/data/build/emacs-branches/emacs/branches/winprop/lisp'
Error in KERNEL::UNBOUND-SYMBOL-ERROR-HANDLER: the variable L is unbound.
[Condition of type UNBOUND-VARIABLE]
Restarts:
0: [ABORT] Return to Top-Level.
Debug (type H for help)
(EVAL L)
Source: Error finding source:
Error in function DEBUG::GET-FILE-TOP-LEVEL-FORM: Source file no longer exists:
target:code/eval.lisp.
0]
--
Joakim Verona
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: weird build error in my environment
2008-05-30 13:50 weird build error in my environment joakim
@ 2008-05-30 18:07 ` Glenn Morris
2008-05-30 18:50 ` Glenn Morris
0 siblings, 1 reply; 3+ messages in thread
From: Glenn Morris @ 2008-05-30 18:07 UTC (permalink / raw)
To: joakim; +Cc: emacs-devel
joakim@verona.se wrote:
> make -w compile-last
[...]
> Error in KERNEL::UNBOUND-SYMBOL-ERROR-HANDLER: the variable L is unbound.
> [Condition of type UNBOUND-VARIABLE]
A quick web search suggests you try collapsing the expression
els=`echo $$wins | tr ' \011' '\012\012' | \
sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
in compile-last into a single line (something that I will do anyway).
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: weird build error in my environment
2008-05-30 18:07 ` Glenn Morris
@ 2008-05-30 18:50 ` Glenn Morris
0 siblings, 0 replies; 3+ messages in thread
From: Glenn Morris @ 2008-05-30 18:50 UTC (permalink / raw)
To: joakim; +Cc: emacs-devel
>> Error in KERNEL::UNBOUND-SYMBOL-ERROR-HANDLER: the variable L is unbound.
>> [Condition of type UNBOUND-VARIABLE]
Actually, try this:
*** Makefile.in 30 May 2008 02:56:59 -0000 1.125
--- Makefile.in 30 May 2008 18:42:41 -0000
***************
*** 1271,1283 ****
## In case any files are missing from ELCFILES.
compile-last:
@wd=$(lisp); $(setwins); \
! els=`echo $$wins | tr ' \011' '\012\012' | \
! sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
for el in $(COMPILE_FIRST) $$els; do \
! elc=$${el}c; \
! if test -f $$el && ! test -f $$elc && \
! grep 'no-byte-compile: t' $$el > /dev/null; then \
! sel=`echo $el | sed "s|^$$lisp|\$$(lisp)|"`; \
echo "Maintainer warning: $$sel missing from \$$ELCFILES?"; \
echo "Compiling $$el"; \
$(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || exit 1; \
--- 1271,1281 ----
## In case any files are missing from ELCFILES.
compile-last:
@wd=$(lisp); $(setwins); \
! els=`echo $$wins | tr ' \011' '\012\012' | sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
for el in $(COMPILE_FIRST) $$els; do \
! if test -f $$el && ! test -f $${el}c && \
! grep 'no-byte-compile: t' $$el > /dev/null; then \
! sel=`echo $$el | sed "s|^$(lisp)/\.|\\$$(lisp)|"`; \
echo "Maintainer warning: $$sel missing from \$$ELCFILES?"; \
echo "Compiling $$el"; \
$(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || exit 1; \
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-05-30 18:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-30 13:50 weird build error in my environment joakim
2008-05-30 18:07 ` Glenn Morris
2008-05-30 18:50 ` Glenn Morris
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.