diff options
| author | Eric S. Raymond | 2014-10-25 14:53:20 -0400 |
|---|---|---|
| committer | Eric S. Raymond | 2014-10-25 14:53:20 -0400 |
| commit | 2a7753ce3efd6a126cb4db23763e24fa79e98253 (patch) | |
| tree | dbf8861fb7339924154e6463fe620620b0bf2dab | |
| parent | c1609a8ccefd965c582c1cbb478b288514540afb (diff) | |
| download | emacs-2a7753ce3efd6a126cb4db23763e24fa79e98253.tar.gz emacs-2a7753ce3efd6a126cb4db23763e24fa79e98253.zip | |
Neutralize language specific to a repository type.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | admin/notes/hydra | 2 | ||||
| -rwxr-xr-x | autogen.sh | 6 |
3 files changed, 8 insertions, 4 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-10-25 Eric S. Raymond <esr@thyrsus.com> | ||
| 2 | |||
| 3 | * autogen.sh: Neutralize language specific to a repository type. | ||
| 4 | |||
| 1 | 2014-10-23 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2014-10-23 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 6 | ||
| 3 | * Makefile.in (ACLOCAL_INPUTS): Omit unnecessary use of 'wildcard'. | 7 | * Makefile.in (ACLOCAL_INPUTS): Omit unnecessary use of 'wildcard'. |
diff --git a/admin/notes/hydra b/admin/notes/hydra index 3b6bc87a2f6..ce2047480d2 100644 --- a/admin/notes/hydra +++ b/admin/notes/hydra | |||
| @@ -26,7 +26,7 @@ http://lists.gnu.org/mailman/listinfo/emacs-buildstatus | |||
| 26 | * The Emacs jobset consists of the following jobs: | 26 | * The Emacs jobset consists of the following jobs: |
| 27 | 27 | ||
| 28 | ** The `tarball' job | 28 | ** The `tarball' job |
| 29 | which gets a checkout from bzr, and does a bootstrap followed | 29 | which gets a checkout from the repository, and does a bootstrap followed |
| 30 | by running make-dist to create a tarball. If this job fails, all the | 30 | by running make-dist to create a tarball. If this job fails, all the |
| 31 | others will too (because they use the tarball as input). | 31 | others will too (because they use the tarball as input). |
| 32 | 32 | ||
diff --git a/autogen.sh b/autogen.sh index 48e6d19c69d..ff04c756409 100755 --- a/autogen.sh +++ b/autogen.sh | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | ### autogen.sh - tool to help build Emacs from a bzr checkout | 2 | ### autogen.sh - tool to help build Emacs from a repository checkout |
| 3 | 3 | ||
| 4 | ## Copyright (C) 2011-2014 Free Software Foundation, Inc. | 4 | ## Copyright (C) 2011-2014 Free Software Foundation, Inc. |
| 5 | 5 | ||
| @@ -23,8 +23,8 @@ | |||
| 23 | 23 | ||
| 24 | ### Commentary: | 24 | ### Commentary: |
| 25 | 25 | ||
| 26 | ## The Emacs bzr repository does not include the configure script | 26 | ## The Emacs repository does not include the configure script (and |
| 27 | ## (and associated helpers). The first time you fetch Emacs from bzr, | 27 | ## associated helpers). The first time you fetch Emacs from the repo, |
| 28 | ## run this script to generate the necessary files. | 28 | ## run this script to generate the necessary files. |
| 29 | ## For more details, see the file INSTALL.REPO. | 29 | ## For more details, see the file INSTALL.REPO. |
| 30 | 30 | ||