[or-cvs] r11159: Stop running ./configure from autogen.sh. "Let's see if anyb (tor/trunk)

nickm at seul.org nickm at seul.org
Fri Aug 17 21:55:25 UTC 2007


Author: nickm
Date: 2007-08-17 17:55:24 -0400 (Fri, 17 Aug 2007)
New Revision: 11159

Modified:
   tor/trunk/
   tor/trunk/ChangeLog
   tor/trunk/autogen.sh
Log:
 r14641 at catbus:  nickm | 2007-08-17 17:53:14 -0400
 Stop running ./configure from autogen.sh.  "Let's see if anybody complains!" says Roger.



Property changes on: tor/trunk
___________________________________________________________________
 svk:merge ticket from /tor/trunk [r14641] on 8246c3cf-6607-4228-993b-4d95d33730f1

Modified: tor/trunk/ChangeLog
===================================================================
--- tor/trunk/ChangeLog	2007-08-17 21:53:57 UTC (rev 11158)
+++ tor/trunk/ChangeLog	2007-08-17 21:55:24 UTC (rev 11159)
@@ -12,6 +12,8 @@
       do not define s6_addr16 or s6_addr32.
     - Fix compile on platforms without getaddrinfo: bug found by Li-Hui
       Zhou.
+    - Do not automatically run configure from autogen.sh.  This non-standard
+      behavior tended to annoy people who have built other programs.
 
   o Minor features (directory servers):
     - When somebody requests a list of statuses or servers, and we have

Modified: tor/trunk/autogen.sh
===================================================================
--- tor/trunk/autogen.sh	2007-08-17 21:53:57 UTC (rev 11158)
+++ tor/trunk/autogen.sh	2007-08-17 21:55:24 UTC (rev 11159)
@@ -3,7 +3,7 @@
 set -e
 
 # Run this to generate all the initial makefiles, etc.
-aclocal
-autoheader
-autoconf
-automake --add-missing --copy
+aclocal && \
+	autoheader && \
+	autoconf && \
+	automake --add-missing --copy



More information about the tor-commits mailing list