Ralf Wildenhues wrote:
* Ralf Wildenhues wrote on Wed, Jul 16, 2008 at 11:39:00PM CEST:
Is there a proper automake way of installing startup scripts?
Try
init_d_dir = $(sysconfdir)/rc.d/init.d
init_d_dir_SCRIPTS = blah
The last line should've been
init_d_SCRIPTS = blah
* Ralf Wildenhues wrote on Wed, Jul 16, 2008 at 11:39:00PM CEST:
> > Is there a proper automake way of installing startup scripts?
>
> Try
> init_d_dir = $(sysconfdir)/rc.d/init.d
> init_d_dir_SCRIPTS = blah
The last line should've been
init_d_SCRIPTS = blah
Sorry about that.
Cheers,
R
Hello Vikram,
* Vikram Ambrose wrote on Wed, Jul 16, 2008 at 10:38:04PM CEST:
> install:
That should've been install-exec-local.
>install -D -m 755 $(sysconfdir)/rc.d/init.d/blah
>
> uninstall:
>rm $(sysconfdir)/rc.d/init.d/blah
>
> Is there a proper automake way of installing startup sc
Currently I have to add my own rule
install:
install -D -m 755 $(sysconfdir)/rc.d/init.d/blah
uninstall:
rm $(sysconfdir)/rc.d/init.d/blah
Is there a proper automake way of installing startup scripts?
Vikram.