aboutsummaryrefslogtreecommitdiffstats
path: root/admin/update_autogen
diff options
context:
space:
mode:
authorEric S. Raymond2014-11-11 13:28:02 -0500
committerEric S. Raymond2014-11-11 13:28:02 -0500
commit7148318abc451ae930d669e6e37af8cb7c5aca75 (patch)
tree193e5ab374a54564317c71722a29cd2bdc163ee0 /admin/update_autogen
parentfca2f70380dcb054497470aaf8eda6173063928e (diff)
downloademacs-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 'admin/update_autogen')
-rwxr-xr-xadmin/update_autogen7
1 files changed, 1 insertions, 6 deletions
diff --git a/admin/update_autogen b/admin/update_autogen
index ef0edfef50c..8b0ae67028a 100755
--- a/admin/update_autogen
+++ b/admin/update_autogen
@@ -47,9 +47,7 @@ cd $PD
47cd ../ 47cd ../
48[ -d admin ] || die "Could not locate admin directory" 48[ -d admin ] || die "Could not locate admin directory"
49 49
50if [ -d .bzr ]; then 50if [ -d .git ]; then
51 vcs=bzr
52elif [ -d .git ]; then
53 vcs=git 51 vcs=git
54else 52else
55 die "Cannot determine vcs" 53 die "Cannot determine vcs"
@@ -305,9 +303,6 @@ EOF
305 303
306 modified=$(status $basegen) || die 304 modified=$(status $basegen) || die
307 305
308 ## bzr status output is always relative to top-level, not PWD.
309 [ "$vcs" = "bzr" ] && cd $oldpwd
310
311 commit "generated" $modified || die "commit error" 306 commit "generated" $modified || die "commit error"
312 307
313 exit 0 308 exit 0