bug #351622: Use CFLAGS during linking.
Fix compilation on portage-multilib.
This commit is contained in:
parent
882a4b7d69
commit
a534b623b9
@ -38,7 +38,7 @@ ${SHLIB_NAME}: ${SOBJS}
|
|||||||
@${ECHO} building shared library $@
|
@${ECHO} building shared library $@
|
||||||
@rm -f $@ ${SHLIB_LINK}
|
@rm -f $@ ${SHLIB_LINK}
|
||||||
@ln -fs $@ ${SHLIB_LINK}
|
@ln -fs $@ ${SHLIB_LINK}
|
||||||
${CC} ${LDFLAGS} -shared -Wl,-x \
|
${CC} ${CFLAGS} ${LDFLAGS} -shared -Wl,-x \
|
||||||
-o $@ -Wl,-soname,${SONAME} \
|
-o $@ -Wl,-soname,${SONAME} \
|
||||||
${SOBJS} ${LDADD}
|
${SOBJS} ${LDADD}
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ all: depend ${PROG}
|
|||||||
${CC} ${CFLAGS} ${CPPFLAGS} -c $< -o $@
|
${CC} ${CFLAGS} ${CPPFLAGS} -c $< -o $@
|
||||||
|
|
||||||
${PROG}: ${SCRIPTS} ${OBJS}
|
${PROG}: ${SCRIPTS} ${OBJS}
|
||||||
${CC} ${LDFLAGS} -o $@ ${OBJS} ${LDADD}
|
${CC} ${CFLAGS} ${LDFLAGS} -o $@ ${OBJS} ${LDADD}
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f ${CLEANFILES}
|
rm -f ${CLEANFILES}
|
||||||
|
Loading…
Reference in New Issue
Block a user