]> code.delx.au - gnu-emacs/commitdiff
Merge from origin/emacs-25
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 23 Mar 2016 18:27:22 +0000 (11:27 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 23 Mar 2016 18:27:22 +0000 (11:27 -0700)
ad250f2 Sync with gnulib
c0165ea Resurrect GNUS-NEWS autogeneration

# Conflicts:
# etc/GNUS-NEWS
# lisp/Makefile.in

1  2 
lisp/Makefile.in

index 83714d0f5a7c8cdff1d86e2ec875170a63a2e21a,f33dd011eda570176bfa01f1cce0efbafd15855d..12bb9c7a3ceccaf930798f808defb3dc72dd1d9b
@@@ -220,20 -213,19 +220,25 @@@ update-authors
        $(emacs) -L "$(top_srcdir)/admin" -l authors \
          -f batch-update-authors "$(top_srcdir)/etc/AUTHORS" "$(top_srcdir)"
  
 -ETAGS = ../lib-src/etags
+ update-gnus-news:
+       $(emacs) -L "$(top_srcdir)/doc/misc" -l gnus-news -f batch-gnus-news \
+         "$(top_srcdir)/doc/misc/gnus-news.texi" \
+         "$(top_srcdir)/etc/GNUS-NEWS"
 +FORCE:
 +.PHONY: FORCE
 +
 +tagsfiles = $(shell find ${srcdir} -name '*.el')
 +tagsfiles := $(filter-out ${srcdir}/%loaddefs.el,${tagsfiles})
 +tagsfiles := $(filter-out ${srcdir}/ldefs-boot.el,${tagsfiles})
 +tagsfiles := $(filter-out ${srcdir}/eshell/esh-groups.el,${tagsfiles})
 +
 +ETAGS = ../lib-src/etags${EXEEXT}
  
 -lisptagsfiles1 = $(srcdir)/*.el
 -lisptagsfiles2 = $(srcdir)/*/*.el
 -lisptagsfiles3 = $(srcdir)/*/*/*.el
 -lisptagsfiles4 = $(srcdir)/*/*/*/*.el
 +${ETAGS}: FORCE
 +      ${MAKE} -C ../lib-src $(notdir $@)
  
 -## The ls | sed | xargs is to stop the command line getting too long
 +## The use of xargs is to stop the command line getting too long
  ## on MS Windows, when the MSYS Bash passes it to a MinGW compiled
  ## etags.  It might be better to use find in a similar way to
  ## compile-main.  But maybe this is not even necessary any more now