[svn-commits] tilghman: trunk r134650 - in /trunk: ./ configure configure.ac

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jul 30 16:40:08 CDT 2008


Author: tilghman
Date: Wed Jul 30 16:40:08 2008
New Revision: 134650

URL: http://svn.digium.com/view/asterisk?view=rev&rev=134650
Log:
Merged revisions 134649 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r134649 | tilghman | 2008-07-30 16:38:50 -0500 (Wed, 30 Jul 2008) | 4 lines

Qwell pointed out, via IRC, that the previous fix only worked when explicitly
set.  When nothing is set, and the option is implied, it breaks, because
configure sets the prefix to 'NONE'.  Fixing.

........

Modified:
    trunk/   (props changed)
    trunk/configure
    trunk/configure.ac

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/configure.ac
URL: http://svn.digium.com/view/asterisk/trunk/configure.ac?view=diff&rev=134650&r1=134649&r2=134650
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Wed Jul 30 16:40:08 2008
@@ -35,7 +35,7 @@
 
      *)
      ac_default_prefix=/usr
-     if test ${prefix} = '/usr'; then
+     if test ${prefix} = '/usr' || test ${prefix} = 'NONE'; then
         if test ${sysconfdir} = '${prefix}/etc'; then
            sysconfdir=/etc
         fi




More information about the svn-commits mailing list