You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ka...@apache.org on 2018/04/03 14:13:43 UTC

[incubator-heron] branch master updated: avoid make install for libunwind (#2844)

This is an automated email from the ASF dual-hosted git repository.

karthikz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new f5ccbe1  avoid make install for libunwind (#2844)
f5ccbe1 is described below

commit f5ccbe170de0e7b2988d85e736c7f3d983903fc6
Author: Karthik Ramasamy <ka...@streaml.io>
AuthorDate: Tue Apr 3 07:13:41 2018 -0700

    avoid make install for libunwind (#2844)
    
    * avoid make install
    
    * add a missing file to be output
    
    * Added simple easy fix
---
 third_party/libunwind/libunwind.BUILD | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/third_party/libunwind/libunwind.BUILD b/third_party/libunwind/libunwind.BUILD
index d4b7470..bc25c71 100644
--- a/third_party/libunwind/libunwind.BUILD
+++ b/third_party/libunwind/libunwind.BUILD
@@ -47,7 +47,7 @@ genrule(
         "patch -p0 < $$SOURCE_DIR/$(location @org_apache_heron//third_party/libunwind:libunwind-1.1-config.patch)",
         "patch -p0 < $$SOURCE_DIR/$(location @org_apache_heron//third_party/libunwind:libunwind-1.1-cache.patch)",
         "./configure --prefix=$$INSTALL_DIR --enable-shared=no --disable-minidebuginfo",
-        "make install",
+        'make install SUBDIRS="src tests"',
         "rm -rf $$TMP_DIR",
     ]),
 )

-- 
To stop receiving notification emails like this one, please contact
karthikz@apache.org.