Blame SOURCES/add-default-link-flags-for-shared-libraries.patch

095ac7
diff --git a/cmdif/Makefile.am b/cmdif/Makefile.am
095ac7
index 0d8f53b..d800302 100644
095ac7
--- a/cmdif/Makefile.am
095ac7
+++ b/cmdif/Makefile.am
095ac7
@@ -50,7 +50,7 @@ libcmdif_a_SOURCES = tools_cif.c tools_cif.h icmd_cif_common.c icmd_cif_common.h
095ac7
 cmdif_pylibdir = $(libdir)/mstflint/python_tools/
095ac7
 cmdif_pylib_DATA = ${CCMDIF_SO} cmdif.py
095ac7
 ${CCMDIF_SO}: libcmdif.a
095ac7
-	$(CC) -g -Wall -pthread -shared ${CFLAGS} *.o -o ${CCMDIF_SO} \
095ac7
+	$(CC) -g -Wall -pthread -shared ${CFLAGS} ${LDFLAGS} *.o -o ${CCMDIF_SO} \
095ac7
 	-L$(USER_DIR)/tools_layouts -ltools_layouts -L$(USER_DIR)/${MTCR_CONF_DIR} -lmtcr_ul
095ac7
 
095ac7
 CLEANFILES = ${CCMDIF_SO}
095ac7
diff --git a/dev_mgt/Makefile.am b/dev_mgt/Makefile.am
095ac7
index 3118b85..e708ad8 100644
095ac7
--- a/dev_mgt/Makefile.am
095ac7
+++ b/dev_mgt/Makefile.am
095ac7
@@ -50,7 +50,7 @@ dev_mgt_pylib_DATA = c_dev_mgt.so dev_mgt.py
095ac7
 dist_dev_mgt_pylib_DATA = dev_mgt.py
095ac7
 
095ac7
 c_dev_mgt.so: libdev_mgt.a
095ac7
-	$(CC) -g -Wall -pthread -shared ${CFLAGS} tools_dev_types.o -o c_dev_mgt.so \
095ac7
+	$(CC) -g -Wall -pthread -shared ${CFLAGS} ${LDFLAGS} tools_dev_types.o -o c_dev_mgt.so \
095ac7
 	-L$(USER_DIR)/reg_access -lreg_access \
095ac7
 	-L$(USER_DIR)/tools_layouts -ltools_layouts \
095ac7
 	-L$(USER_DIR)/${MTCR_CONF_DIR} -lmtcr_ul
095ac7
diff --git a/mtcr_py/Makefile.am b/mtcr_py/Makefile.am
095ac7
index 351eb81..696e82a 100644
095ac7
--- a/mtcr_py/Makefile.am
095ac7
+++ b/mtcr_py/Makefile.am
095ac7
@@ -39,7 +39,7 @@ MTCR_DIR = $(USER_DIR)/${MTCR_CONF_DIR}
095ac7
 mtcr_pylib_DATA = cmtcr.so mtcr.py
095ac7
 dist_mtcr_pylib_DATA = mtcr.py
095ac7
 cmtcr.so:
095ac7
-	$(CC) -g -Wall -pthread -shared ${CFLAGS} $(MTCR_DIR)/*.o -o cmtcr.so $(MFT_CORE_LIB_LINK)
095ac7
+	$(CC) -g -Wall -pthread -shared ${CFLAGS} ${LDFLAGS} $(MTCR_DIR)/*.o -o cmtcr.so $(MFT_CORE_LIB_LINK)
095ac7
 
095ac7
 CLEANFILES = cmtcr.so
095ac7
 
095ac7
diff --git a/reg_access/Makefile.am b/reg_access/Makefile.am
095ac7
index f28290e..a141704 100644
095ac7
--- a/reg_access/Makefile.am
095ac7
+++ b/reg_access/Makefile.am
095ac7
@@ -53,7 +53,7 @@ reg_access_pylib_DATA = ${RREG_ACCESS_SO} regaccess.py
095ac7
 dist_reg_access_pylib_DATA = regaccess.py
095ac7
 
095ac7
 ${RREG_ACCESS_SO}: libreg_access.a
095ac7
-	$(CC) -g -Wall -pthread -shared ${CFLAGS} *.o -o ${RREG_ACCESS_SO} \
095ac7
+	$(CC) -g -Wall -pthread -shared ${CFLAGS} ${LDFLAGS} *.o -o ${RREG_ACCESS_SO} \
095ac7
 	-L$(USER_DIR)/tools_layouts -ltools_layouts -L$(MTCR_DIR) -lmtcr_ul
095ac7
 
095ac7
 CLEANFILES = ${RREG_ACCESS_SO}