Compilation problem in xemacs
Bug #493281 reported by
Uday Reddy
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | ||
---|---|---|---|---|---|---|
VM | Status tracked in Trunk | |||||
Trunk |
Fix Released
|
Critical
|
Unassigned |
Bug Description
The 8.1 devo version fails to compile in XEmacs. configure produces the output (the relevant section)
checking otherdirs... Reading directory /home/staff/
Reading directory /home/staff/
xemacs exiting
.Cannot open load file: conftest.el
The error message "Cannot open load file: conftest.el" ends up being the value of OTHERDIRS in lisp/Makefile, breaking the compilation process.
This problem is not present in 8.0.x.
Related branches
Changed in vm: | |
importance: | Undecided → Critical |
status: | New → Confirmed |
Changed in vm: | |
status: | Confirmed → Fix Committed |
milestone: | none → 8.1.0-beta |
To post a comment you must log in.
Rob and Ulrich, I need your help with this xemacs compilation problem. Can you double check that the following fix makes sense? I don't quite understand the configure files and I am only guessing. -- Uday
=== modified file 'configure.ac'
(add- to-list 'absolutedirs dir))) `"${EMACS_ PROG}" --no-site-file --batch -L ${srcdir}/lisp -l vm-build.el -l conftest.el` `"${EMACS_ PROG}" --no-site-file --batch -l ${srcdir} /lisp/vm- build.el -l conftest.el` RESULT( $OTHERDIRS) OTHERDIRS)
--- configure.ac 2009-12-04 17:39:55 +0000
+++ configure.ac 2009-12-07 20:10:22 +0000
@@ -222,7 +222,7 @@
(princ (format "%S" absolutedirs)))
TEST
- OTHERDIRS=
+ OTHERDIRS=
AC_MSG_
AC_SUBST(
])