From 82857f824e0d884eb93e1ca2668ca9330257b9cb Mon Sep 17 00:00:00 2001 From: tilghman Date: Mon, 2 Aug 2010 14:28:29 +0000 Subject: [PATCH] Merged revisions 280624 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r280624 | tilghman | 2010-08-02 09:27:20 -0500 (Mon, 02 Aug 2010) | 2 lines Apparently, the values in makeopts are sometimes 1:1 and sometimes 1. Compensate for this. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@280626 f38db490-d61c-443f-a65b-d21fe96a405b --- main/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/Makefile b/main/Makefile index 8175f1e7f..b18d1a0d4 100644 --- a/main/Makefile +++ b/main/Makefile @@ -26,7 +26,7 @@ OBJS=$(filter-out $(OBJSFILTER),$(SRC:.c=.o)) # 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