From e6a6f23274da1f39d756993a0934a803479e0b7c Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Fri, 4 Feb 2005 18:13:56 +0000 Subject: [PATCH] Fix build problems 2005-02-04 Michael Olson * muse-build.el: Add contrib directory to `load-path'. (muse-elint-files): Load `muse-regexps.el'. * scripts/publish: Change permissions so that this script is executable. Add contrib directory to load list. Add `muse-regexps.el' to list. git-archimport-id: mwolson@gnu.org--2005/muse--main--1.0--patch-8 --- ChangeLog | 20 ++++++++++++++++++++ muse-build.el | 2 ++ scripts/publish | 4 ++-- 3 files changed, 24 insertions(+), 2 deletions(-) mode change 100644 => 100755 scripts/publish diff --git a/ChangeLog b/ChangeLog index 12f22ca..81551f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,26 @@ # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2005/muse--main--1.0 # +2005-02-04 18:13:56 GMT Michael Olson patch-8 + + Summary: + Fix build problems + Revision: + muse--main--1.0--patch-8 + + 2005-02-04 Michael Olson + + * muse-build.el: Add contrib directory to `load-path'. + (muse-elint-files): Load `muse-regexps.el'. + + * scripts/publish: Change permissions so that this script is + executable. Add contrib directory to load list. Add + `muse-regexps.el' to list. + + modified files: + ChangeLog muse-build.el scripts/publish + + 2005-01-31 21:04:43 GMT Michael Olson patch-7 Summary: diff --git a/muse-build.el b/muse-build.el index ec9740c..7cb97fa 100644 --- a/muse-build.el +++ b/muse-build.el @@ -1,4 +1,5 @@ (add-to-list 'load-path ".") +(add-to-list 'load-path "contrib") (defun muse-elint-files () (require 'elint) @@ -17,6 +18,7 @@ (load "muse-mode" nil nomessage) (load "muse-poem" nil nomessage) (load "muse-project" nil nomessage) + (load "muse-regexps" nil nomessage) (load "muse-texinfo" nil nomessage) (add-to-list 'elint-standard-variables 'current-prefix-arg) diff --git a/scripts/publish b/scripts/publish old mode 100644 new mode 100755 index 4611679..8af56ac --- a/scripts/publish +++ b/scripts/publish @@ -1,7 +1,7 @@ #!/bin/bash style=$(echo $1 | sed 's/^--//') shift -emacs -q -batch -L $(dirname $0) \ - -l muse.el -l muse-publish.el \ +emacs -q -batch -L . -L contrib \ + -l muse.el -l muse-regexps.el -l muse-publish.el \ -l muse-html.el -l muse-latex.el -l muse-texinfo.el \ -f muse-batch-publish-files $style --output-dir=. "$@" -- 2.11.4.GIT