]> git.eshelyaron.com Git - emacs.git/commitdiff
* cedet/ede/pconf.el (ede-proj-configure-synchronize): Use
authorChong Yidong <cyd@stupidchicken.com>
Fri, 9 Oct 2009 20:32:02 +0000 (20:32 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 9 Oct 2009 20:32:02 +0000 (20:32 +0000)
"autoreconf -i".  Suggested by Andreas Schwab.

lisp/ChangeLog
lisp/cedet/ede/pconf.el

index 5856ae9203a255f1a9207ea3412057f415f56b17..a28a788ac88cd8126bfa62b82ad7ece890b85a65 100644 (file)
@@ -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
index 920fd806f45b184ed6f71fe2e57cb05e11c4e132..7544f85405de41a3aafdcea9ef9a9a21f4e16b3f 100644 (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")