Prevent a possible syntax error when not using shared libs.
This commit is contained in:
parent
0e749cf744
commit
934052397c
2 changed files with 12 additions and 12 deletions
|
@ -364,7 +364,7 @@ install: ${LIB} ${STATIC_LIB} ${PLUGIN} ${PROG} install-extra
|
|||
|
||||
for i in ${LIB}; do \
|
||||
${INSTALL_STATUS}; \
|
||||
if ${MKDIR_P} ${DESTDIR}${libdir} && ${INSTALL_LIB}; then \
|
||||
if ${MKDIR_P} ${DESTDIR}${libdir} ${INSTALL_LIB}; then \
|
||||
${INSTALL_OK}; \
|
||||
else \
|
||||
${INSTALL_FAILED}; \
|
||||
|
@ -445,7 +445,7 @@ uninstall: uninstall-extra
|
|||
|
||||
for i in ${LIB}; do \
|
||||
if test -f ${DESTDIR}${libdir}/$$i; then \
|
||||
if ${UNINSTALL_LIB}; then \
|
||||
if : ${UNINSTALL_LIB}; then \
|
||||
${DELETE_OK}; \
|
||||
else \
|
||||
${DELETE_FAILED}; \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue