summaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-08-30 20:08:59 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-08-30 20:08:59 +0000
commitd4e44d7c31129d5eebf19201db3c059bff4792d6 (patch)
treeebffb9b1b47ca3abdefcf7654f74853b219a5a83 /apps/Makefile
parent63ad336bbfe7cb5ff0c9dcd0b3cb4cbab7febb8d (diff)
correct syntax error
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6456 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/Makefile')
-rwxr-xr-xapps/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 94b5b2107..358e900f5 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