diff options
| author | Glenn Morris | 2014-12-01 13:29:03 -0500 |
|---|---|---|
| committer | Glenn Morris | 2014-12-01 13:29:03 -0500 |
| commit | e5c0350828d5cf558c93355da47ca6e738edd1ac (patch) | |
| tree | 0a7a3510d2742bd89872dbd4e3f7ad3d20f796bc /admin | |
| parent | b34578dd880e788a68bb7bbd12fd848ba461226a (diff) | |
| download | emacs-e5c0350828d5cf558c93355da47ca6e738edd1ac.tar.gz emacs-e5c0350828d5cf558c93355da47ca6e738edd1ac.zip | |
* admin/update_autogen: Fix bogosity introduced in 2014-11-16 merge.
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/ChangeLog | 4 | ||||
| -rwxr-xr-x | admin/update_autogen | 9 |
2 files changed, 5 insertions, 8 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index 70961a727a6..091732b40dd 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-12-01 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * update_autogen: Fix bogosity introduced in 2014-11-16 merge. | ||
| 4 | |||
| 1 | 2014-11-29 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2014-11-29 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 6 | ||
| 3 | Lessen focus on ChangeLog files, as opposed to change log entries. | 7 | Lessen focus on ChangeLog files, as opposed to change log entries. |
diff --git a/admin/update_autogen b/admin/update_autogen index 4c4f52e2d2d..af7ea83dd91 100755 --- a/admin/update_autogen +++ b/admin/update_autogen | |||
| @@ -305,9 +305,6 @@ EOF | |||
| 305 | 305 | ||
| 306 | modified=$(status $basegen) || die | 306 | modified=$(status $basegen) || die |
| 307 | 307 | ||
| 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" | 308 | commit "generated" $modified || die "commit error" |
| 312 | 309 | ||
| 313 | exit 0 | 310 | exit 0 |
| @@ -379,11 +376,7 @@ echo "Checking status of loaddef files..." | |||
| 379 | ## It probably would be fine to just check+commit lisp/, since | 376 | ## It probably would be fine to just check+commit lisp/, since |
| 380 | ## making autoloads should not effect any other files. But better | 377 | ## making autoloads should not effect any other files. But better |
| 381 | ## safe than sorry. | 378 | ## safe than sorry. |
| 382 | modified=$(status $genfiles ${ldefs_out#lisp/}) || die | 379 | modified=$(status $genfiles $ldefs_out) || die |
| 383 | |||
| 384 | |||
| 385 | ## bzr status output is always relative to top-level, not PWD. | ||
| 386 | [ "$vcs" = "bzr" ] && cd ../ | ||
| 387 | 380 | ||
| 388 | 381 | ||
| 389 | commit "loaddefs" $modified || die "commit error" | 382 | commit "loaddefs" $modified || die "commit error" |