Makefile: Do not fail creating pkgconfig directory if it already exists

This commit is contained in:
Martin
2025-07-31 20:13:35 +02:00
parent c519408e76
commit 203dbd4eff

View File

@ -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)+' \