* cedet/ede/pconf.el (ede-proj-configure-synchronize): Use

"autoreconf -i".  Suggested by Andreas Schwab.
This commit is contained in:
Chong Yidong 2009-10-09 20:32:02 +00:00
parent d364386c8e
commit fa63f49c89
2 changed files with 6 additions and 7 deletions

View file

@ -99,13 +99,7 @@ don't do it. A value of nil means to just do it.")
(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")