diff options
| author | Eric S. Raymond | 2014-11-11 13:28:02 -0500 |
|---|---|---|
| committer | Eric S. Raymond | 2014-11-11 13:28:02 -0500 |
| commit | 7148318abc451ae930d669e6e37af8cb7c5aca75 (patch) | |
| tree | 193e5ab374a54564317c71722a29cd2bdc163ee0 /Makefile.in | |
| parent | fca2f70380dcb054497470aaf8eda6173063928e (diff) | |
| download | emacs-7148318abc451ae930d669e6e37af8cb7c5aca75.tar.gz emacs-7148318abc451ae930d669e6e37af8cb7c5aca75.zip | |
Git transition patch
All bzr revision IDS, and all CVS revision IDs for which a commit
could be identified, were changed to time-date!committer version
stamps. All .cvsignore files in the history became .gitignore files.
Fixes-bug annotations from bzr were copied into the corresponding
commit comments.
(The first .cvsignore commit was 1999-09-30T14:07:54Z!fx@gnu.org>.
The last CVS commit was <2009-12-27T08:11:12Z!cyd@stupidchicken.com>)
Committer/author email addresses are generally correct for the
transition day, not necessarily when the commit was originally made.
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 3c389b6e837..8f5cacbfeb5 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -371,12 +371,17 @@ lisp: src | |||
| 371 | lib lib-src lisp nt: Makefile | 371 | lib lib-src lisp nt: Makefile |
| 372 | $(MAKE) -C $@ all | 372 | $(MAKE) -C $@ all |
| 373 | 373 | ||
| 374 | # Ideally, VCSWITNESS should be a file that is modified whenever the | ||
| 375 | # repository registers a commit from either a local checkin or a | ||
| 376 | # repository pull. In git there is no single file that guarantees | ||
| 377 | # this, but the local log for the current head should be close enough. | ||
| 378 | # | ||
| 374 | # Note the use of single quotes in the value of vcswitness. | 379 | # Note the use of single quotes in the value of vcswitness. |
| 375 | # This passes an unexpanded $srcdir to src's Makefile, which then | 380 | # This passes an unexpanded $srcdir to src's Makefile, which then |
| 376 | # expands it using its own value of srcdir (which points to the | 381 | # expands it using its own value of srcdir (which points to the |
| 377 | # source directory of src/). | 382 | # source directory of src/). |
| 378 | src: Makefile | 383 | src: Makefile |
| 379 | dirstate='.bzr/checkout/dirstate'; \ | 384 | dirstate='.git/logs/HEAD'; \ |
| 380 | vcswitness='$$(srcdir)/../'$$dirstate; \ | 385 | vcswitness='$$(srcdir)/../'$$dirstate; \ |
| 381 | [ -r "$(srcdir)/$$dirstate" ] || vcswitness=''; \ | 386 | [ -r "$(srcdir)/$$dirstate" ] || vcswitness=''; \ |
| 382 | $(MAKE) -C $@ all VCSWITNESS="$$vcswitness" | 387 | $(MAKE) -C $@ all VCSWITNESS="$$vcswitness" |