On Tue, May 15, 2018 at 04:39:37PM +0200, Björn Ketelaars wrote: > > Good idea to kill that comment, I'm not sure there's a point in > > changing the WANTLIB line though... > > > > -# libssl/libcrypto are used for polarssl_o_p_test only > > -WANTLIB += c pthread > > +WANTLIB= c pthread > > There is no point, and no problem being solved. It is a mere personal > preference. I reverted the WANTLIB line.
Useless note of the day: in case the variable isn't already defined, there is exactly zero difference in efficiency between VAR = something and VAR += something in fact, the test (variable not yet defined) triggers the exact same code in both case: set initial value.
