Hi, if you are using asterisk 1.2 and OS is debian then modify in the
Makefile under asterisk folder after you unzip ..

original line
..............................................................................................................................
config:
        if [ -d /etc/rc.d/init.d ]; then \
                $(INSTALL) -m 755 contrib/init.d/rc.redhat.asterisk
/etc/rc.d/init.d/asterisk; \
                /sbin/chkconfig --add asterisk; \
        elif [ -d /etc/init.d ]; then \
                $(INSTALL) -m 755 init.asterisk /etc/init.d/asterisk; \
        fi

.............................................................................................................................
replace this line

$(INSTALL) -m 755 init.asterisk /etc/init.d/asterisk; \

with

$(INSTALL) -m 755 contrib/init.d/rc.debian.asterisk /etc/init.d/asterisk; \

save and make config again, it worked for me under  debian OS

thanks
atik


On 6/19/07, Josu Lazkano <[EMAIL PROTECTED]> wrote:
> Hello everybody, when I run "make config" I have this error:
>
> install: cannot stat `init.asterisk': No such file or directory
>  make: *** [config] Error 1
>
> I don't understand.
>
> For what is "make config"? to put on /etc/init.d/?
>
> Thanks for all
>
> _______________________________________________
> --Bandwidth and Colocation provided by Easynews.com --
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>
> http://lists.digium.com/mailman/listinfo/asterisk-users
>

_______________________________________________
--Bandwidth and Colocation provided by Easynews.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to