From 14f11e778d58dcd6161ce53ac48a1b1d751c5578 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 21 Feb 2005 11:41:24 +0000 Subject: [PATCH] * Makefile.in (EXAMINE_PACKAGEDIR): Use configure-package-path. * aclocal.m4 (AC_EXAMINE_PACKAGEDIR): Ditto. --- Makefile.in | 26 ++++++++++++++------------ aclocal.m4 | 26 ++++++++++++++------------ 2 files changed, 28 insertions(+), 24 deletions(-) diff --git a/Makefile.in b/Makefile.in index d831bbe..fbc5432 100644 --- a/Makefile.in +++ b/Makefile.in @@ -19,18 +19,20 @@ PWD= # It will be used to look for the XEmacs package path if this file is # mis-configured (e.g. configured for FSFmacs). EXAMINE_PACKAGEDIR = $(XEMACS) -batch -q -no-site-file -eval \ - "(let (package-dir) \ - (if (boundp (quote early-packages)) \ - (let ((dirs (delq nil (append (if early-package-load-path \ - early-packages) \ - (if late-package-load-path \ - late-packages) \ - (if last-package-load-path \ - last-packages))))) \ - (while (and dirs (not package-dir)) \ - (if (file-directory-p (car dirs)) \ - (setq package-dir (car dirs) \ - dirs (cdr dirs)))))) \ + "(let ((dirs (append \ + (if (and (boundp (quote configure-package-path)) \ + (listp configure-package-path)) \ + (delete \"\" configure-package-path)) \ + (if (boundp (quote early-packages)) \ + (append \ + (if early-package-load-path early-packages) \ + (if late-package-load-path late-packages) \ + (if last-package-load-path last-packages))))) \ + package-dir) \ + (while (and dirs (not package-dir)) \ + (if (file-directory-p (car dirs)) \ + (setq package-dir (car dirs) \ + dirs (cdr dirs)))) \ (princ (or package-dir \"\")))" 2>/dev/null all: lick info diff --git a/aclocal.m4 b/aclocal.m4 index 38bfc16..c32d886 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -360,18 +360,20 @@ AC_SUBST(USE_FONTS) AC_DEFUN(AC_EXAMINE_PACKAGEDIR, [dnl Examine PACKAGEDIR. AC_EMACS_LISP(PACKAGEDIR, - (let (package-dir)\ - (if (boundp (quote early-packages))\ - (let ((dirs (delq nil (append (if early-package-load-path\ - early-packages)\ - (if late-package-load-path\ - late-packages)\ - (if last-package-load-path\ - last-packages)))))\ - (while (and dirs (not package-dir))\ - (if (file-directory-p (car dirs))\ - (setq package-dir (car dirs)\ - dirs (cdr dirs))))))\ + (let ((dirs (append\ + (if (and (boundp (quote configure-package-path))\ + (listp configure-package-path))\ + (delete \"\" configure-package-path))\ + (if (boundp (quote early-packages))\ + (append\ + (if early-package-load-path early-packages)\ + (if late-package-load-path late-packages)\ + (if last-package-load-path last-packages)))))\ + package-dir)\ + (while (and dirs (not package-dir))\ + (if (file-directory-p (car dirs))\ + (setq package-dir (car dirs)\ + dirs (cdr dirs))))\ (or package-dir \"\")), "noecho")]) -- 1.7.10.4