[asterisk-commits] trunk r11478 - /trunk/funcs/Makefile

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Feb 28 23:15:37 MST 2006


Author: tilghman
Date: Wed Mar  1 00:15:35 2006
New Revision: 11478

URL: http://svn.digium.com/view/asterisk?rev=11478&view=rev
Log:
Bug 6619 - Fix Solaris issue with doubled [[

Modified:
    trunk/funcs/Makefile

Modified: trunk/funcs/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/funcs/Makefile?rev=11478&r1=11477&r2=11478&view=diff
==============================================================================
--- trunk/funcs/Makefile (original)
+++ trunk/funcs/Makefile Wed Mar  1 00:15:35 2006
@@ -17,7 +17,7 @@
   MODS:=$(filter-out func_odbc.so,$(MODS))
 endif
 
-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),)
   CURLLIBS:=$(shell $(CROSS_COMPILE_BIN)curl-config --libs)
 endif
 



More information about the asterisk-commits mailing list