[asterisk-dev] gmake[2]: crvs: Command not found

Tzafrir Cohen tzafrir.cohen at xorcom.com
Mon Jan 11 01:42:28 CST 2010


On Sun, Jan 10, 2010 at 07:07:04PM -0600, Nathaniel L Keeling wrote:
> Hello,
> 
> I am trying to compile asterisk 1.6.2.0 on Solaris 10 and I am getting 
> this error when I issue the command "gmake menuselect":
> 
> # gmake menuselect
> CC="cc" CXX="g++" LD="" AR="" RANLIB="" CFLAGS="" gmake -C menuselect 
> CONFIGURE_SILENT="--silent" cmenuselect
> gmake[1]: Entering directory `/tmp/asterisk-1.6.2.0/menuselect'
> gmake[2]: Entering directory `/tmp/asterisk-1.6.2.0/menuselect/mxml'
> /usr/local/bin/rm -f libmxml.a
> crvs libmxml.a mxml-attr.o mxml-entity.o mxml-file.o mxml-index.o 
> mxml-node.o mxml-search.o mxml-set.o mxml-private.o mxml-string.o
> gmake[2]: crvs: Command not found
> gmake[2]: *** [libmxml.a] Error 127
> gmake[2]: Leaving directory `/tmp/asterisk-1.6.2.0/menuselect/mxml'
> gmake[1]: *** [mxml/libmxml.a] Error 2
> gmake[1]: Leaving directory `/tmp/asterisk-1.6.2.0/menuselect'
> gmake: *** [menuselect/cmenuselect] Error 2
> 
> I have been searching for the command "crvs" but no luck. Any idea what 
> is causing this error?

The configure script has:

case "$uname" in
        Darwin* | *BSD*)
                ARFLAGS="-rcv"
                ;;
        *)
                ARFLAGS="crvs"
                ;;
esac

As we clearly see in the above, AR="" . 

So:

  $(AR) $(ARFLAGS)

is:

  crvs


So. Why do we have AR="" ? (It seems to come from the menuselect
Makefile)

-- 
               Tzafrir Cohen
icq#16849755              jabber:tzafrir.cohen at xorcom.com
+972-50-7952406           mailto:tzafrir.cohen at xorcom.com
http://www.xorcom.com  iax:guest at local.xorcom.com/tzafrir



More information about the asterisk-dev mailing list