diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2004-02-09 01:48:34 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2004-02-09 01:48:34 +0000 |
commit | f1dc5f45ab455339c02340d612af409ab9f51fc9 (patch) | |
tree | 60cea1bcd090141afcdd64d4d349f699fe86e760 /emacs | |
parent | 16353acc6f0d025d4dc101d01285611d7162a0f4 (diff) |
* Makefile.am (TAGS_FILES): Use this variable instead of
ETAGS_ARGS so that TAGS can be built using separate build
directory.
* Makefile.am (TAGS_FILES): Use this variable instead of
ETAGS_ARGS so that TAGS can be built using separate build
directory.
* debugger/breakpoints/Makefile.am (TAGS_FILES),
debugger/Makefile.am (TAGS_FILES), Makefile.am (TAGS_FILES): Use
this variable instead of ETAGS_ARGS so that TAGS can be built
using separate build directory.
* primitives/Makefile.am (TAGS_FILES), internals/Makefile.am
(TAGS_FILES), Makefile.am (TAGS_FILES): Use this variable instead
of ETAGS_ARGS so that TAGS can be built using separate build
directory.
* Makefile.am, goops/Makefile.am (TAGS_FILES): Use this variable
instead of ETAGS_ARGS so that TAGS can be built using separate
build directory.
* Makefile.am (TAGS_FILES): Use this variable instead of
ETAGS_ARGS so that TAGS can be built using separate build
directory.
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/ChangeLog | 6 | ||||
-rw-r--r-- | emacs/Makefile.am | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/emacs/ChangeLog b/emacs/ChangeLog index 544065acd..3ddf384d1 100644 --- a/emacs/ChangeLog +++ b/emacs/ChangeLog @@ -1,3 +1,9 @@ +2004-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se> + + * Makefile.am (TAGS_FILES): Use this variable instead of + ETAGS_ARGS so that TAGS can be built using separate build + directory. + 2004-01-28 Neil Jerram <neil@ossau.uklinux.net> * gds.el (gds-handle-client-input): Handle new `thread-status' diff --git a/emacs/Makefile.am b/emacs/Makefile.am index 981414f3f..c85ad1ca5 100644 --- a/emacs/Makefile.am +++ b/emacs/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in. ## -## Copyright (C) 2003 Free Software Foundation, Inc. +## Copyright (C) 2003, 2004 Free Software Foundation, Inc. ## ## This file is part of GUILE. ## @@ -34,5 +34,5 @@ info_TEXINFOS = gds.texi TEXINFO_TEX = ../doc/ref/texinfo.tex -ETAGS_ARGS = $(subpkgdata_DATA) $(lisp_LISP) +TAGS_FILES = $(subpkgdata_DATA) $(lisp_LISP) EXTRA_DIST = $(subpkgdata_DATA) $(lisp_LISP) |