+Thu Oct 17 13:45:20 1996 Tom Tromey <tromey@cygnus.com>
+
+ Lisp fixes from Erick Branderhorst:
+ * m4/lispdir.m4: Define lispdir, not LISPDIR.
+ * lisp.am: Added missing \.
+
Fri Oct 11 00:44:49 1996 Tom Tromey <tromey@cygnus.com>
* automake.in (handle_source_transform): Only rewrite c, yacc, lex
Anthony Green <green@cygnus.com>
David A. Swierczek <swiercze@mr.med.ge.com>
Dieter Baron <dillo@stieltjes.smc.univie.ac.at>
+Erick Branderhorst <branderh@iaehv.nl>
François Pinard <pinard@iro.umontreal.ca>
Fred Fish <fnf@ninemoons.com>
Glenn Amerine <glenn@pie.mhsc.org>
* `missing' program
* copyrights on m4 files, aclocal output
+!! foo_LIBRARIES = @JOE@ -> _LIBFILES is wrong
+
* BUILT_SOURCES should be examined by automake, %dep_files should be
updated to handle it.
+* consider adding pkglibexecdir, maybe others?
+ requests for pkg-dirs with version included
+
Further:
- texinfo/info changes
- Per's suggestion
files, which means rewriting so that the Makefile.am contents aren't
copied into the output immediately. This feature is probably required
to fully support libtool ("grody compilation issue")
+ [ this could be probably done more directly by examining the sources
+ as we scan Makefile.am ]
Henrik Frystyk Nielsen says:
Henrik> 4) Flags like --include-deps are lost when you make changes to
list="$(@DIR@_LISP)"; for p in $$list; do \
$(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p; \
## Only install .elc file if it exists.
- if test -f $${p}c; then
+ if test -f $${p}c; then \
$(INSTALL_DATA) $${p}c $(@DIR@dir)/$${p}c; \
else : ; fi; \
done
list="$(@DIR@_LISP)"; for p in $$list; do \
$(INSTALL_DATA) $(srcdir)/$$p $(@DIR@dir)/$$p; \
## Only install .elc file if it exists.
- if test -f $${p}c; then
+ if test -f $${p}c; then \
$(INSTALL_DATA) $${p}c $(@DIR@dir)/$${p}c; \
else : ; fi; \
done
if test $EMACS != "no"; then
AC_MSG_CHECKING([where .elc files should go])
dnl Set default value
- LISPDIR="\$(datadir)/emacs/site-lisp"
+ lispdir="\$(datadir)/emacs/site-lisp"
if test "x$prefix" = "xNONE"; then
if test -d $ac_default_prefix/share/emacs/site-lisp; then
- LISPDIR="\$(prefix)/share/emacs/site-lisp"
+ lispdir="\$(prefix)/share/emacs/site-lisp"
else
if test -d $ac_default_prefix/lib/emacs/site-lisp; then
- LISPDIR="\$(prefix)/lib/emacs/site-lisp"
+ lispdir="\$(prefix)/lib/emacs/site-lisp"
fi
fi
else
if test -d $prefix/share/emacs/site-lisp; then
- LISPDIR="\$(prefix)/share/emacs/site-lisp"
+ lispdir="\$(prefix)/share/emacs/site-lisp"
else
if test -d $prefix/lib/emacs/site-lisp; then
- LISPDIR="\$(prefix)/lib/emacs/site-lisp"
+ lispdir="\$(prefix)/lib/emacs/site-lisp"
fi
fi
fi
- AC_MSG_RESULT($LISPDIR)
+ AC_MSG_RESULT($lispdir)
ELCFILES="\$(ELCFILES)"
fi
- AC_SUBST(LISPDIR)
+ AC_SUBST(lispdir)
AC_SUBST(ELCFILES)])