diff options
author | Matthias Runge <mrunge@redhat.com> | 2019-12-13 07:42:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-12-13 07:42:36 +0000 |
commit | 3c47290b9a08d836c6d648ee08d3ca9fe3401f8f (patch) | |
tree | 80c93e6608cc6e4b7d8ec5e33c4fc390523bfde3 /src | |
parent | 6afde5454ff335c1f1050905a6d171e76712cfd3 (diff) | |
parent | 3b7264dea083281fe8cca20cf4ee9829ea1e8c49 (diff) |
Merge "Fix the Makefile for intel-cmt-cat so it can be build without errors on CentOS 7. Mount the /sys/fs/resctrl from host to container to avoid issues with intel_rdt plugin."
Diffstat (limited to 'src')
-rw-r--r-- | src/libpqos/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libpqos/Makefile b/src/libpqos/Makefile index a32a4ab8..a3a9ba55 100644 --- a/src/libpqos/Makefile +++ b/src/libpqos/Makefile @@ -40,7 +40,9 @@ INSTALL_TARGET = force_install force_make force_make: $(WORK_DIR) $(AT)cd $(WORK_DIR) && git pull $(LIBPQOS_URL) $(LIBPQOS_TAG) @echo "git pull done" - $(AT)$(MAKE) -C $(WORK_DIR) $(MORE_MAKE_FLAGS) + $(AT)$(MAKE) -C $(WORK_DIR)/lib $(MORE_MAKE_FLAGS) + $(AT)$(MAKE) -C $(WORK_DIR)/pqos $(MORE_MAKE_FLAGS) + $(AT)$(MAKE) -C $(WORK_DIR)/rdtset $(MORE_MAKE_FLAGS) @echo "Make done" force_install: |