Repository: mesos
Updated Branches:
  refs/heads/master 541b3d963 -> ac10a67f7


Fixed symlink generation for DESTDIR installs.

The install-data-hook was missing the '$(DESTDIR)' prefix.

Review: https://reviews.apache.org/r/43741


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

Branch: refs/heads/master
Commit: ac10a67f76fc546b2211908d858636f4698fd2bb
Parents: 541b3d9
Author: Kapil Arya <[email protected]>
Authored: Thu Feb 18 17:32:13 2016 -0500
Committer: Kapil Arya <[email protected]>
Committed: Thu Feb 18 17:52:46 2016 -0500

----------------------------------------------------------------------
 src/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/ac10a67f/src/Makefile.am
----------------------------------------------------------------------
diff --git a/src/Makefile.am b/src/Makefile.am
index 54ebe91..27aec37 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -2010,7 +2010,7 @@ install-data-hook:
            liblogrotate_container_logger; do                   \
                for lib in `cd $(DESTDIR)/$(pkgmoduledir) && ls $${name}*`; do \
                  rm -f $$lib;                                  \
-                 $(LN_S) $(pkgmoduledir)/$$lib $$lib;          \
+                 $(LN_S) $(DESTDIR)/$(pkgmoduledir)/$$lib $$lib; \
                done;                                           \
        done
 

Reply via email to