From: Yi Zhao Date: Mon, 10 Jan 2022 02:13:51 +0000 (+0800) Subject: ITS#9840 - libraries/Makefile.in: ignore the mkdir errors X-Git-Tag: OPENLDAP_REL_ENG_2_5_13~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5e926b221fabab5f4983f80d7be9ad205df291f;p=thirdparty%2Fopenldap.git 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 --- 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