]> code.delx.au - gnu-emacs/commitdiff
* admin/update_autogen: Fix bogosity introduced in 2014-11-16 merge.
authorGlenn Morris <rgm@gnu.org>
Mon, 1 Dec 2014 18:29:03 +0000 (13:29 -0500)
committerGlenn Morris <rgm@gnu.org>
Mon, 1 Dec 2014 18:29:03 +0000 (13:29 -0500)
admin/ChangeLog
admin/update_autogen

index 70961a727a602f7ee396e9873f782a0b6eb1321b..091732b40ddb8228f4ae3559f25222b2d9f8084b 100644 (file)
@@ -1,3 +1,7 @@
+2014-12-01  Glenn Morris  <rgm@gnu.org>
+
+       * update_autogen: Fix bogosity introduced in 2014-11-16 merge.
+
 2014-11-29  Paul Eggert  <eggert@cs.ucla.edu>
 
        Lessen focus on ChangeLog files, as opposed to change log entries.
index 4c4f52e2d2d82f0b8270bc970773baa28830bc1e..af7ea83dd91dd4b56b85e3a4e246197c2563969b 100755 (executable)
@@ -305,9 +305,6 @@ EOF
 
     modified=$(status $basegen) || die
 
-    ## bzr status output is always relative to top-level, not PWD.
-    [ "$vcs" = "bzr" ] && cd $oldpwd
-
     commit "generated" $modified || die "commit error"
 
     exit 0
@@ -379,11 +376,7 @@ echo "Checking status of loaddef files..."
 ## It probably would be fine to just check+commit lisp/, since
 ## making autoloads should not effect any other files.  But better
 ## safe than sorry.
-modified=$(status $genfiles ${ldefs_out#lisp/}) || die
-
-
-## bzr status output is always relative to top-level, not PWD.
-[ "$vcs" = "bzr" ] && cd ../
+modified=$(status $genfiles $ldefs_out) || die
 
 
 commit "loaddefs" $modified || die "commit error"