mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 10:47:18 +00:00 
			
		
		
		
	Merged revisions 134650 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r134650 | tilghman | 2008-07-30 16:40:08 -0500 (Wed, 30 Jul 2008) | 12 lines 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. ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@134651 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -35,7 +35,7 @@ case "${host_os}" in | ||||
|  | ||||
|      *) | ||||
|      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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user