You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2016/11/02 02:53:43 UTC

[23/50] [abbrv] qpid-proton git commit: NO-JIRA: go: fix parallel build from scratch

NO-JIRA: go: fix parallel build from scratch

Fixed example build dependencies to ensure the examples are not built
concurrently with the go packages they depend on. This was happening frequently
and causing errors in a parallel build from scratch.


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/d91131a2
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/d91131a2
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/d91131a2

Branch: refs/heads/go1
Commit: d91131a2b873260f0490b49895e7c1c868d40906
Parents: 05deba7
Author: Alan Conway <ac...@redhat.com>
Authored: Tue Oct 18 13:25:27 2016 -0400
Committer: Alan Conway <ac...@redhat.com>
Committed: Tue Oct 18 14:01:46 2016 -0400

----------------------------------------------------------------------
 examples/go/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/d91131a2/examples/go/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/examples/go/CMakeLists.txt b/examples/go/CMakeLists.txt
index 868b780..c9aba01 100644
--- a/examples/go/CMakeLists.txt
+++ b/examples/go/CMakeLists.txt
@@ -32,7 +32,7 @@ if(BUILD_GO)
     add_custom_target(${target} ALL
       COMMAND ${GO_BUILD} ${GO_EXAMPLE_FLAGS} -o ${output} ${CMAKE_CURRENT_SOURCE_DIR}/${example}.go
       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
-      DEPENDS qpid-proton)
+      DEPENDS go-build)
     list(APPEND example_targets ${target})
   endforeach()
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org