All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/jitterentropy-library: ensure make command is continued across new line
@ 2019-10-25 23:23 Markus Mayer
  2019-10-26  5:29 ` Peter Korsgaard
  0 siblings, 1 reply; 2+ messages in thread
From: Markus Mayer @ 2019-10-25 23:23 UTC (permalink / raw)
  To: buildroot

The first line of JITTERENTROPY_LIBRARY_BUILD_CMDS must end with "\" to
concatenate the two lines.

Fixes: build error

[...]
/usr/bin/make -j33 -C
/local/users/mmayer/buildroot/output/arm64/build/jitterentropy-library-2.2.0
/local/users/mmayer/buildroot/output/arm64/host/bin/aarch64-linux-gcc
-shared -Wl,-soname,libjitterentropy.so.2 -o libjitterentropy.so.2.2.0
jitterentropy-base.o  -Wl,-z,relro,-z,now  -lrt
/local/users/mmayer/buildroot/output/arm64/host/bin/aarch64-linux-ar
rcs libjitterentropy.a jitterentropy-base.o
jitterentropy
/bin/bash: jitterentropy: command not found

Signed-off-by: Markus Mayer <mmayer@broadcom.com>
---
 package/jitterentropy-library/jitterentropy-library.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/jitterentropy-library/jitterentropy-library.mk b/package/jitterentropy-library/jitterentropy-library.mk
index 75c770f..3db04b2 100644
--- a/package/jitterentropy-library/jitterentropy-library.mk
+++ b/package/jitterentropy-library/jitterentropy-library.mk
@@ -22,7 +22,7 @@ JITTERENTROPY_LIBRARY_INSTALL_TARGETS += install-shared
 endif
 
 define JITTERENTROPY_LIBRARY_BUILD_CMDS
-	$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
+	$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
 		$(JITTERENTROPY_LIBRARY_BUILD_TARGETS)
 endef
 
-- 
2.7.4

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

* [Buildroot] [PATCH] package/jitterentropy-library: ensure make command is continued across new line
  2019-10-25 23:23 [Buildroot] [PATCH] package/jitterentropy-library: ensure make command is continued across new line Markus Mayer
@ 2019-10-26  5:29 ` Peter Korsgaard
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2019-10-26  5:29 UTC (permalink / raw)
  To: buildroot

>>>>> "Markus" == Markus Mayer <mmayer@broadcom.com> writes:

 > The first line of JITTERENTROPY_LIBRARY_BUILD_CMDS must end with "\" to
 > concatenate the two lines.

 > Fixes: build error

 > [...]
 > /usr/bin/make -j33 -C
 > /local/users/mmayer/buildroot/output/arm64/build/jitterentropy-library-2.2.0
 > /local/users/mmayer/buildroot/output/arm64/host/bin/aarch64-linux-gcc
 > -shared -Wl,-soname,libjitterentropy.so.2 -o libjitterentropy.so.2.2.0
 > jitterentropy-base.o  -Wl,-z,relro,-z,now  -lrt
 > /local/users/mmayer/buildroot/output/arm64/host/bin/aarch64-linux-ar
 > rcs libjitterentropy.a jitterentropy-base.o
 > jitterentropy
 > /bin/bash: jitterentropy: command not found

 > Signed-off-by: Markus Mayer <mmayer@broadcom.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2019-10-26  5:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-25 23:23 [Buildroot] [PATCH] package/jitterentropy-library: ensure make command is continued across new line Markus Mayer
2019-10-26  5:29 ` Peter Korsgaard

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.