From 7baf2c8e2cace40a71124124c046d6e7604719a1 Mon Sep 17 00:00:00 2001 From: yoichi Date: Sat, 23 Mar 2002 10:21:44 +0000 Subject: [PATCH] * Makefile.am: export PREFIX and LISPDIR also. * Makefile.lisp: don't set those if ones are imported. --- lisp/Makefile.am | 4 +++- lisp/Makefile.lisp | 8 ++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/lisp/Makefile.am b/lisp/Makefile.am index dc8a1e2..f9bdb7c 100644 --- a/lisp/Makefile.am +++ b/lisp/Makefile.am @@ -3,7 +3,9 @@ DISTCLEANFILES = liece-setup.el EMACS = @EMACS@ XEMACS = @XEMACS@ -export EMACS XEMACS +PREFIX = @prefix@ +LISPDIR = @lispdir@ +export EMACS XEMACS PREFIX LISPDIR all: elc diff --git a/lisp/Makefile.lisp b/lisp/Makefile.lisp index df0f0d7..2e8ab50 100644 --- a/lisp/Makefile.lisp +++ b/lisp/Makefile.lisp @@ -10,8 +10,12 @@ endif FLAGS = -batch -q -no-site-file TAR = tar -PREFIX = NONE -LISPDIR = NONE +ifndef PREFIX + PREFIX = NONE +endif +ifndef LISPDIR + LISPDIR = NONE +endif PACKAGEDIR = NONE VERSION_SPECIFIC_LISPDIR = NONE -- 1.7.10.4