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.
>>
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
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'
> 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
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)
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 @@
#
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
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