fielding 01/02/18 05:43:29
Modified: build MakeEtags Log: Fix some old comments. Why is this file here? It should be a make target. Revision Changes Path 1.2 +7 -7 apr/build/MakeEtags Index: MakeEtags =================================================================== RCS file: /home/cvs/apr/build/MakeEtags,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- MakeEtags 2001/02/18 13:36:15 1.1 +++ MakeEtags 2001/02/18 13:43:28 1.2 @@ -1,19 +1,19 @@ #!/bin/sh # This file illustrates how to generate a useful TAGS file via etags -# for emacs. This should be invoked from the src directory i.e.: -# > helpers/MakeEtags -# and will create a TAGS file in the src directory. +# for emacs. This should be invoked from the top source directory i.e.: +# > build/MakeEtags +# and will create a TAGS file in the top source directory. # This script falls under the Apache License. # See http://www.apache.org/docs/LICENSE -# Once you have created src/TAGS in emacs you'll need to setup -# tag-table-alist with an entry to assure it finds the single src/TAGS +# Once you have created ./TAGS in emacs you'll need to setup +# tag-table-alist with an entry to assure it finds the single ./TAGS # file from the many source directories. Something along these lines: # (setq tag-table-alist -# '(("/home/me/work/apache-1.3/src/" -# . "/home/me/work/apache-1.3/src/") +# '(("/home/me/work/httpd-2.0/" +# . "/home/me/work/httpd-2.0/") # )) # This requires a special version of etags, i.e. the
