forked from pool/mstflint
d3c5b1400a
- Updated fix-race-condition-during-install.patch to fix another race condition during install OBS-URL: https://build.opensuse.org/request/show/1029591 OBS-URL: https://build.opensuse.org/package/show/science:HPC/mstflint?expand=0&rev=47
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
commit 032889d95f344f946014498e43efe173703da535
|
|
Author: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
|
Date: Mon Oct 15 09:33:09 2018 +0200
|
|
|
|
fix race condition during install
|
|
|
|
Signed-off-by: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
|
|
|
diff --git dev_mgt/Makefile.am dev_mgt/Makefile.am
|
|
index 2283c2d1c763..2e4d7781e245 100644
|
|
--- dev_mgt/Makefile.am
|
|
+++ dev_mgt/Makefile.am
|
|
@@ -46,7 +46,7 @@ libdev_mgt_a_SOURCES = \
|
|
|
|
dev_mgt_pylibdir = $(libdir)/mstflint/python_tools/
|
|
|
|
-dev_mgt_pylib_DATA = c_dev_mgt.so dev_mgt.py
|
|
+dev_mgt_pylib_DATA = c_dev_mgt.so
|
|
dist_dev_mgt_pylib_DATA = dev_mgt.py
|
|
|
|
c_dev_mgt.so: libdev_mgt.a
|
|
diff --git mtcr_py/Makefile.am mtcr_py/Makefile.am
|
|
index 934b8030a229..da7d2aed878f 100644
|
|
--- mtcr_py/Makefile.am
|
|
+++ mtcr_py/Makefile.am
|
|
@@ -37,7 +37,7 @@ mtcr_pylibdir = $(libdir)/mstflint/python_tools/
|
|
USER_DIR = ..
|
|
MTCR_DIR = $(USER_DIR)/${MTCR_CONF_DIR}
|
|
|
|
-mtcr_pylib_DATA = cmtcr.so mtcr.py
|
|
+mtcr_pylib_DATA = cmtcr.so
|
|
dist_mtcr_pylib_DATA = mtcr.py
|
|
cmtcr.so:
|
|
$(CC) -g -Wall -pthread -shared ${CFLAGS} $(MTCR_DIR)/*.o -o cmtcr.so $(MFT_CORE_LIB_LINK)
|