Michael, you broken the build. Bad. Please fix this build problem.
In the meantime, I am making this emergency fix to lisp/setup-paths.el
by reverting to 21.2.40, which will allow folks to build xemacs from
CVS.
>>>> "Vin" == Vin Shelton <acs(a)xemacs.org>
writes:
Vin> I can not install 21.2 from CVS; make install gets the following error:
Vin> Loading dump-paths.el...
Vin> Symbol's value as variable is void: paths-load-path-depth
Index: lisp/setup-paths.el
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/lisp/setup-paths.el,v
retrieving revision 1.13.2.8
diff -u -w -r1.13.2.8 setup-paths.el
--- lisp/setup-paths.el 2001/01/14 11:49:30 1.13.2.8
+++ lisp/setup-paths.el 2001/01/15 04:20:08
@@ -38,12 +38,9 @@
;;; Code:
-(defvar paths-core-load-path-depth 0
+(defvar paths-load-path-depth 1
"Depth of load-path searches in core Lisp paths.")
-(defvar paths-site-load-path-depth 1
- "Depth of load-path searches in site Lisp paths.")
-
(defvar paths-default-info-directories
(mapcar (function
(lambda (dirlist)
@@ -90,11 +87,11 @@
(site-lisp-load-path
(and site-lisp-directory
(paths-find-recursive-load-path (list site-lisp-directory)
- paths-site-load-path-depth)))
+ paths-load-path-depth)))
(lisp-load-path
(and lisp-directory
(paths-find-recursive-load-path (list lisp-directory)
- paths-core-load-path-depth))))
+ paths-load-path-depth))))
(append env-load-path
early-package-load-path
site-lisp-load-path