Re: [OpenWrt-Devel] Regarding "make all / make install" usage

2009-10-27 Thread Felix Fietkau
Michael Buesch wrote: > On Tuesday 27 October 2009 12:26:00 Felix Fietkau wrote: >> To be honest, I don't see this as a problem. We don't pass parallel >> builds on to individual package make processes. Parallelization is done >> *only* on the build system level, with one exception: the kernel. >>

Re: [OpenWrt-Devel] Some questions to package

2009-10-27 Thread Dave Cooper
Take a look at *shameless plug* the msmtp package which builds two binaries, one linking to openssl. https://dev.openwrt.org/browser/packages/mail/msmtp/Makefile Dave On Tue, Oct 27, 2009 at 6:44 PM, Ondrej Zajicek wrote: > Hello > > I would like to create an OpenWRT package for BIRD routing da

Re: [OpenWrt-Devel] Regarding "make all / make install" usage

2009-10-27 Thread Michael Buesch
On Tuesday 27 October 2009 12:26:00 Felix Fietkau wrote: > To be honest, I don't see this as a problem. We don't pass parallel > builds on to individual package make processes. Parallelization is done > *only* on the build system level, with one exception: the kernel. > And since most packages don'

Re: [OpenWrt-Devel] Some questions to package

2009-10-27 Thread ZioPRoTo (Saverio Proto)
> What is the proper way to support such build? Obviously, it can be > easily done by creating two completely independent package > specifications, but that would lead to unnecessary duplication. look at the iperf package for an example: https://dev.openwrt.org/browser/packages/net/iperf it is on

[OpenWrt-Devel] Some questions to package

2009-10-27 Thread Ondrej Zajicek
Hello I would like to create an OpenWRT package for BIRD routing daemon ( http://bird.network.cz/ ), but there is one problem with it: There is a configure option to specify whether it should be compiled for IPv4 or IPv6. If you want both IPv4 and IPv6, you have to built it (configure and make)

[OpenWrt-Devel] [PATCH] init.d/led should run after init.d/done to avoid led settings being override

2009-10-27 Thread Nuno Gonçalves
Signed-off-by: Nuno Goncalves --- Index: package/base-files/files/etc/init.d/led === --- package/base-files/files/etc/init.d/led (revision 18182) +++ package/base-files/files/etc/init.d/led (working copy) @@ -1,7 +1,7 @@ #

Re: [OpenWrt-Devel] Regarding "make all / make install" usage

2009-10-27 Thread Felix Fietkau
Luigi 'Comio' Mantellini wrote: > Hi All, > > I'm using the parallel make (see my previous parallel/distcc compilation > patchset). I noticed that a lof packages use the following make invocation: > > $(MAKE) all install > > "all" followed by "install" target. > > In general this is not correc

[OpenWrt-Devel] Regarding "make all / make install" usage

2009-10-27 Thread Luigi 'Comio' Mantellini
Hi All, I'm using the parallel make (see my previous parallel/distcc compilation patchset). I noticed that a lof packages use the following make invocation: $(MAKE) all install "all" followed by "install" target. In general this is not correct for the following: 1) Not all Makefiles have a r