diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/cedet/ede/pconf.el | 8 |
2 files changed, 6 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5856ae9203a..a28a788ac88 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-10-09 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * cedet/ede/pconf.el (ede-proj-configure-synchronize): Use | ||
| 4 | "autoreconf -i". Suggested by Andreas Schwab. | ||
| 5 | |||
| 1 | 2009-10-09 Juanma Barranquero <lekktu@gmail.com> | 6 | 2009-10-09 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * international/mule-cmds.el (ucs-names): Exclude new "Enclosed | 8 | * international/mule-cmds.el (ucs-names): Exclude new "Enclosed |
diff --git a/lisp/cedet/ede/pconf.el b/lisp/cedet/ede/pconf.el index 920fd806f45..7544f85405d 100644 --- a/lisp/cedet/ede/pconf.el +++ b/lisp/cedet/ede/pconf.el | |||
| @@ -99,13 +99,7 @@ don't do it. A value of nil means to just do it.") | |||
| 99 | (ede-map-targets this 'ede-proj-tweak-autoconf))) | 99 | (ede-map-targets this 'ede-proj-tweak-autoconf))) |
| 100 | ;; Now save | 100 | ;; Now save |
| 101 | (save-buffer) | 101 | (save-buffer) |
| 102 | ;; Verify aclocal | 102 | (setq postcmd "autoreconf -i;") |
| 103 | (setq postcmd "aclocal;") | ||
| 104 | ;; Always add missing files as needed. | ||
| 105 | (setq postcmd (concat postcmd "automake --add-missing;")) | ||
| 106 | |||
| 107 | ;; Always do autoreconf | ||
| 108 | (setq postcmd (concat postcmd "autoreconf;")) | ||
| 109 | ;; Verify a bunch of files that are required by automake. | 103 | ;; Verify a bunch of files that are required by automake. |
| 110 | (ede-proj-configure-test-required-file this "AUTHORS") | 104 | (ede-proj-configure-test-required-file this "AUTHORS") |
| 111 | (ede-proj-configure-test-required-file this "NEWS") | 105 | (ede-proj-configure-test-required-file this "NEWS") |