# HG changeset patch # User Chong Yidong # Date 1255120322 0 # Node ID e33093eaa152d939ef7a331a6734dd6bfe36cd7a # Parent c980b10b79eb0a569d3658ad93bfa2caad5d692e * cedet/ede/pconf.el (ede-proj-configure-synchronize): Use "autoreconf -i". Suggested by Andreas Schwab. diff -r c980b10b79eb -r e33093eaa152 lisp/ChangeLog --- 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 + + * cedet/ede/pconf.el (ede-proj-configure-synchronize): Use + "autoreconf -i". Suggested by Andreas Schwab. + 2009-10-09 Juanma Barranquero * international/mule-cmds.el (ucs-names): Exclude new "Enclosed diff -r c980b10b79eb -r e33093eaa152 lisp/cedet/ede/pconf.el --- 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")