comparison lisp/cedet/ede/pconf.el @ 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 7f4c7f5c0eba
children 51bc239bdc37
comparison
equal deleted inserted replaced
105534:c980b10b79eb 105535:e33093eaa152
97 this 97 this
98 (lambda (sp) 98 (lambda (sp)
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")
112 (ede-proj-configure-test-required-file this "README") 106 (ede-proj-configure-test-required-file this "README")
113 (ede-proj-configure-test-required-file this "ChangeLog") 107 (ede-proj-configure-test-required-file this "ChangeLog")