[svn-commits] tilghman: branch 1.4 r134649 - in /branches/1.4: configure configure.ac

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


Author: tilghman
Date: Wed Jul 30 16:38:50 2008
New Revision: 134649

URL: http://svn.digium.com/view/asterisk?view=rev&rev=134649
Log:
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:
    branches/1.4/configure
    branches/1.4/configure.ac

Modified: branches/1.4/configure.ac
URL: http://svn.digium.com/view/asterisk/branches/1.4/configure.ac?view=diff&rev=134649&r1=134648&r2=134649
==============================================================================
--- branches/1.4/configure.ac (original)
+++ branches/1.4/configure.ac Wed Jul 30 16:38:50 2008
@@ -28,7 +28,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