Mercurial > emacs
changeset 105535:e33093eaa152
* cedet/ede/pconf.el (ede-proj-configure-synchronize): Use
"autoreconf -i". Suggested by Andreas Schwab.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Fri, 09 Oct 2009 20:32:02 +0000 |
parents | c980b10b79eb |
children | 1ae9eb863fbc |
files | lisp/ChangeLog lisp/cedet/ede/pconf.el |
diffstat | 2 files changed, 6 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Fri Oct 09 13:03:17 2009 +0000 +++ b/lisp/ChangeLog Fri Oct 09 20:32:02 2009 +0000 @@ -1,3 +1,8 @@ +2009-10-09 Chong Yidong <cyd@stupidchicken.com> + + * cedet/ede/pconf.el (ede-proj-configure-synchronize): Use + "autoreconf -i". Suggested by Andreas Schwab. + 2009-10-09 Juanma Barranquero <lekktu@gmail.com> * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
--- a/lisp/cedet/ede/pconf.el Fri Oct 09 13:03:17 2009 +0000 +++ b/lisp/cedet/ede/pconf.el Fri Oct 09 20:32:02 2009 +0000 @@ -99,13 +99,7 @@ (ede-map-targets this 'ede-proj-tweak-autoconf))) ;; Now save (save-buffer) - ;; Verify aclocal - (setq postcmd "aclocal;") - ;; Always add missing files as needed. - (setq postcmd (concat postcmd "automake --add-missing;")) - - ;; Always do autoreconf - (setq postcmd (concat postcmd "autoreconf;")) + (setq postcmd "autoreconf -i;") ;; Verify a bunch of files that are required by automake. (ede-proj-configure-test-required-file this "AUTHORS") (ede-proj-configure-test-required-file this "NEWS")