[svn-commits] tilghman: branch 1.6.0 r134539 - in /branches/1.6.0: ./ configure configure.ac
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Wed Jul 30 14:49:45 CDT 2008
Author: tilghman
Date: Wed Jul 30 14:49:45 2008
New Revision: 134539
URL: http://svn.digium.com/view/asterisk?view=rev&rev=134539
Log:
Merged revisions 134538 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r134538 | tilghman | 2008-07-30 14:48:37 -0500 (Wed, 30 Jul 2008) | 12 lines
Merged revisions 134536 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r134536 | tilghman | 2008-07-30 14:47:16 -0500 (Wed, 30 Jul 2008) | 4 lines
Only override sysconfdir and mandir when prefix=/usr
(closes issue #13093)
Reported by: pabelanger
........
................
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/configure
branches/1.6.0/configure.ac
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/configure.ac
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/configure.ac?view=diff&rev=134539&r1=134538&r2=134539
==============================================================================
--- branches/1.6.0/configure.ac (original)
+++ branches/1.6.0/configure.ac Wed Jul 30 14:49:45 2008
@@ -35,11 +35,13 @@
*)
ac_default_prefix=/usr
- if test ${sysconfdir} = '${prefix}/etc'; then
- sysconfdir=/etc
- fi
- if test ${mandir} = '${prefix}/man'; then
- mandir=/usr/share/man
+ if test ${prefix} = '/usr'; then
+ if test ${sysconfdir} = '${prefix}/etc'; then
+ sysconfdir=/etc
+ fi
+ if test ${mandir} = '${prefix}/man'; then
+ mandir=/usr/share/man
+ fi
fi
;;
esac
More information about the svn-commits
mailing list