From 203dbd4effbd33c3afc37f427fecfc8399067ee6 Mon Sep 17 00:00:00 2001 From: Martin Date: Thu, 31 Jul 2025 20:13:35 +0200 Subject: [PATCH] Makefile: Do not fail creating `pkgconfig` directory if it already exists --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 17101f9..7ab2d53 100644 --- a/Makefile +++ b/Makefile @@ -227,7 +227,7 @@ ifneq ($(KISSFFT_STATIC), 1) endif endif ifneq ($(shell uname -s),Darwin) - mkdir "$(ABS_LIBDIR)/pkgconfig" + mkdir -p "$(ABS_LIBDIR)/pkgconfig" sed \ -e 's+@PKGCONFIG_KISSFFT_VERSION@+$(PKGCONFIG_KISSFFT_VERSION)+' \ -e 's+@KISSFFT_OUTPUT_NAME@+$(PKGCONFIG_KISSFFT_OUTPUT_NAME)+' \