[or-cvs] r13410: Oops; left a dquote out of acinclude.m4 (tor/trunk)

nickm at seul.org nickm at seul.org
Thu Feb 7 01:08:33 UTC 2008


Author: nickm
Date: 2008-02-06 20:08:33 -0500 (Wed, 06 Feb 2008)
New Revision: 13410

Modified:
   tor/trunk/
   tor/trunk/ChangeLog
   tor/trunk/acinclude.m4
Log:
 r17957 at catbus:  nickm | 2008-02-06 20:08:29 -0500
 Oops; left a dquote out of acinclude.m4



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

Modified: tor/trunk/ChangeLog
===================================================================
--- tor/trunk/ChangeLog	2008-02-06 21:53:13 UTC (rev 13409)
+++ tor/trunk/ChangeLog	2008-02-07 01:08:33 UTC (rev 13410)
@@ -49,6 +49,8 @@
       connections, tell the controller that the request has failed.
     - Avoid using too little bandwidth when Tor skips a few seconds.  Bugfix
       on 0.1.2.x.
+    - Fix shell error when warning about missing packages in configure
+      script, on fedora or redhat machines. Bugfix on 0.2.0.x.
 
   o Code simplifications and refactoring:
     - Remove some needless generality from cpuworker code, for improved

Modified: tor/trunk/acinclude.m4
===================================================================
--- tor/trunk/acinclude.m4	2008-02-06 21:53:13 UTC (rev 13409)
+++ tor/trunk/acinclude.m4	2008-02-07 01:08:33 UTC (rev 13410)
@@ -53,14 +53,14 @@
 fi
 if test -f /etc/fedora-release && test x"$tor_$1_$2_redhat" != x; then
   AC_WARN([On Fedora Core, you can install$h $1 using "yum install $tor_$1_$2_redhat"])
-  if test x"$tor_$1_$2_redhat != x"$tor_$1_devpkg_redhat"; then 
-    AC_WARN([   You will probably need $tor_$1_devpkg_redhat too.])
+  if test x"$tor_$1_$2_redhat" != x"$tor_$1_devpkg_redhat"; then 
+    AC_WARN([   You will probably need to install $tor_$1_devpkg_redhat too.])
   fi 
 else
   if test -f /etc/redhat-release && test x"$tor_$1_$2_redhat" != x; then
     AC_WARN([On most Redhat-based systems, you can get$h $1 by installing the $tor_$1_$2_redhat" RPM package])
     if test x"$tor_$1_$2_redhat" != x"$tor_$1_devpkg_redhat"; then 
-      AC_WARN([   You will probably need $tor_$1_devpkg_redhat too.])
+      AC_WARN([   You will probably need to install $tor_$1_devpkg_redhat too.])
     fi 
   fi
 fi



More information about the tor-commits mailing list