There is a line like in codes/Makefile $(if $(filter codec_lpc10,$(EMBEDDED_MODS)),modules.link,codec_lpc10.so): $(LIBLPC10) What is filter? Where is filter? "whereis filter" doesnt return anything "find . | grep filter" in asterisk root directory returns nothing. Thanks, Jerry
On Wednesday 06 January 2010 13:45:55 Jerry Geis wrote:> There is a line like in codes/Makefile > > $(if $(filter > codec_lpc10,$(EMBEDDED_MODS)),modules.link,codec_lpc10.so): $(LIBLPC10) > > What is filter? Where is filter? > > "whereis filter" doesnt return anything > "find . | grep filter" in asterisk root directory returns nothing.It's a Makefile command. See: http://www.gnu.org/software/automake/manual/make/Text-Functions.html#index-filter-554 -- Tilghman Lesher Digium, Inc. | Senior Software Developer twitter: Corydon76 | IRC: Corydon76-dig (Freenode) Check us out at: www.digium.com & www.asterisk.org
> > It's a Makefile command. See: > http://www.gnu.org/software/automake/manual/make/Text-Functions.html#index-filter-554 > >great - thanks is there no method by the configure command to --disable-FEATURE??? the help says its there but doesnt seem to do anything for me. example: ./configure --disable-codec_lpc10 doesnt seem to do anything. I was trying to find a way without running "make menuselect" to not compile in certain items. Thanks, jerry