From 72a8057d551c306fe55c47f715ca3216fa4c4fb8 Mon Sep 17 00:00:00 2001 From: pancake Date: Sat, 24 Feb 2018 00:53:51 +0100 Subject: [PATCH] Fix #9481 - Fix make install --- shlr/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shlr/Makefile b/shlr/Makefile index 0ff35bcc79..3162c5aa32 100644 --- a/shlr/Makefile +++ b/shlr/Makefile @@ -328,7 +328,7 @@ libr_shlr.${EXT_AR}: rm -rf .libr mkdir .libr for LIB in ${SHLRS} ; do \ - ${PARTIALLD} -o .libr/$$(basename $${LIB} .a).o $${LIB} ; \ + if [ -f "$${LIB}" ]; then ${PARTIALLD} -o .libr/$$(basename $${LIB} .a).o $${LIB} ; fi ; \ done ${AR} crs $@ .libr/*.o