All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] build: Fix parallel build
@ 2017-11-28 13:29 Szymon Janc
  2017-11-28 15:48 ` Denis Kenzior
  0 siblings, 1 reply; 2+ messages in thread
From: Szymon Janc @ 2017-11-28 13:29 UTC (permalink / raw)
  To: ell

[-- Attachment #1: Type: text/plain, Size: 1502 bytes --]

  GEN      unit/cert-intca.pem
  GEN      unit/cert-server.pem
  GEN      unit/cert-chain.pem
  GEN      unit/cert-entity-int.pem
  CCLD     unit/test-pem
  CCLD     unit/test-tls
  CCLD     unit/test-key
libtool:   error: cannot find the library 'ell/libell-private.la' or
    unhandled argument 'ell/libell-private.la'
make[1]: *** [Makefile:1392: unit/test-tls] Error 1
make[1]: *** Waiting for unfinished jobs....
libtool:   error: cannot find the library 'ell/libell-private.la' or
     unhandled argument 'ell/libell-private.la'
make[1]: *** [Makefile:1344: unit/test-pem] Error 1
make: *** [Makefile:1000: all] Error 2
---
 Makefile.am | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 9b4ca06..a95bac4 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -238,13 +238,13 @@ unit_test_base64_LDADD = ell/libell-private.la
 unit_test_pbkdf2_LDADD = ell/libell-private.la
 
 unit_test_pem_LDADD = ell/libell-private.la
-unit_test_pem_DEPENDENCIES = $(cert_files)
+unit_test_pem_DEPENDENCIES = $(cert_files) ell/libell-private.la
 
 unit_test_tls_LDADD = ell/libell-private.la
-unit_test_tls_DEPENDENCIES = $(cert_files)
+unit_test_tls_DEPENDENCIES = $(cert_files) ell/libell-private.la
 
 unit_test_key_LDADD = ell/libell-private.la
-unit_test_key_DEPENDENCIES = $(cert_files)
+unit_test_key_DEPENDENCIES = $(cert_files) ell/libell-private.la
 
 unit_test_uuid_LDADD = ell/libell-private.la
 
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] build: Fix parallel build
  2017-11-28 13:29 [PATCH] build: Fix parallel build Szymon Janc
@ 2017-11-28 15:48 ` Denis Kenzior
  0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2017-11-28 15:48 UTC (permalink / raw)
  To: ell

[-- Attachment #1: Type: text/plain, Size: 872 bytes --]

Hi Szymon,

On 11/28/2017 07:29 AM, Szymon Janc wrote:
>    GEN      unit/cert-intca.pem
>    GEN      unit/cert-server.pem
>    GEN      unit/cert-chain.pem
>    GEN      unit/cert-entity-int.pem
>    CCLD     unit/test-pem
>    CCLD     unit/test-tls
>    CCLD     unit/test-key
> libtool:   error: cannot find the library 'ell/libell-private.la' or
>      unhandled argument 'ell/libell-private.la'
> make[1]: *** [Makefile:1392: unit/test-tls] Error 1
> make[1]: *** Waiting for unfinished jobs....
> libtool:   error: cannot find the library 'ell/libell-private.la' or
>       unhandled argument 'ell/libell-private.la'
> make[1]: *** [Makefile:1344: unit/test-pem] Error 1
> make: *** [Makefile:1000: all] Error 2
> ---
>   Makefile.am | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
> 

Applied, thanks.

Regards,
-Denis


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-11-28 15:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-28 13:29 [PATCH] build: Fix parallel build Szymon Janc
2017-11-28 15:48 ` Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.