From b67fced7aeaabec9364b4711bd790ff52336a5d4 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Wed, 31 Aug 2005 21:29:58 +0000 Subject: [PATCH] correct Makefile errors (issue #5072) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6475 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/Makefile | 2 +- codecs/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/Makefile b/apps/Makefile index 358e900f5b..94b5b21070 100755 --- a/apps/Makefile +++ b/apps/Makefile @@ -56,7 +56,7 @@ CFLAGS+=-I$(CROSS_COMPILE_TARGET)/usr/local/include -L$(CROSS_COMPILE_TARGET)/us endif CURLLIBS=$(shell $(CROSS_COMPILE_BIN)curl-config --libs) -ifneq ($(shell if [ 0x`$(CROSS_COMPILE_BIN)curl-config --vernum` -ge 0x70907 ]; then echo "OK" ; fi),) +ifneq ($(shell if [[ 0x`$(CROSS_COMPILE_BIN)curl-config --vernum` -ge 0x70907 ]]; then echo "OK" ; fi),) ifneq (${CURLLIBS},) APPS+=app_curl.so endif diff --git a/codecs/Makefile b/codecs/Makefile index 0c5c2c2ddd..6e096e19b0 100755 --- a/codecs/Makefile +++ b/codecs/Makefile @@ -48,7 +48,7 @@ ifneq (${ULIS_SPEEX},) endif ifneq ($(wildcard ilbc/iLBC_decode.h),) - MODILC=codec_ilbc.so + MODILBC=codec_ilbc.so LIBILBC=ilbc/libilbc.a endif