[asterisk-commits] tilghman: branch 1.8 r280624 - /branches/1.8/main/Makefile
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Aug 2 09:27:24 CDT 2010
Author: tilghman
Date: Mon Aug 2 09:27:20 2010
New Revision: 280624
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=280624
Log:
Apparently, the values in makeopts are sometimes 1:1 and sometimes 1. Compensate for this.
Modified:
branches/1.8/main/Makefile
Modified: branches/1.8/main/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/main/Makefile?view=diff&rev=280624&r1=280623&r2=280624
==============================================================================
--- branches/1.8/main/Makefile (original)
+++ branches/1.8/main/Makefile Mon Aug 2 09:27:20 2010
@@ -26,7 +26,7 @@
# otherwise modules will not have them available if none of the static
# objects use it.
OBJS+=stdtime/localtime.o
-ifneq ($(WEAKREF),1:1)
+ifneq ($(findstring 1,$(WEAKREF)),1)
OBJS+=../res/res_adsi.o
endif
More information about the asterisk-commits
mailing list