From f5e926b221fabab5f4983f80d7be9ad205df291f Mon Sep 17 00:00:00 2001 From: Yi Zhao Date: Mon, 10 Jan 2022 10:13:51 +0800 Subject: [PATCH] ITS#9840 - libraries/Makefile.in: ignore the mkdir errors Ignore the mkdir errors to fix the parallel build failure: ../../build/shtool mkdir -p TOPDIR/tmp-glibc/work/cortexa15t2hf-neon-wrs-linux-gnueabi/openldap/2.5.9-r0/image/usr/lib mkdir: cannot create directory 'TOPDIR/tmp-glibc/work/cortexa15t2hf-neon-wrs-linux-gnueabi/openldap/2.5.9-r0/image/usr/lib': File exists Signed-off-by: Yi Zhao --- libraries/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Makefile.in b/libraries/Makefile.in index 5d0588980c..b3a9127ea3 100644 --- a/libraries/Makefile.in +++ b/libraries/Makefile.in @@ -24,7 +24,7 @@ PKGCONFIG_DIR=$(DESTDIR)$(libdir)/pkgconfig PKGCONFIG_SRCDIRS=liblber libldap install-local: - @$(MKDIR) $(PKGCONFIG_DIR) + @-$(MKDIR) $(PKGCONFIG_DIR) @for i in $(PKGCONFIG_SRCDIRS); do \ $(INSTALL_DATA) $$i/*.pc $(PKGCONFIG_DIR); \ done -- 2.47.2