From 747708c84bf6399a2eac18f3d6dae326e7b6262d Mon Sep 17 00:00:00 2001 From: gabry Date: Wed, 17 Dec 2025 21:02:40 +0100 Subject: [PATCH] pcre2: fix DESTDIR install --- pcre2.recipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcre2.recipe.py b/pcre2.recipe.py index 5ed0e0e..5032387 100644 --- a/pcre2.recipe.py +++ b/pcre2.recipe.py @@ -17,7 +17,7 @@ build = [ # 64-bit build f"cd {builddir} && ./configure --prefix=/usr --docdir=/usr/share/doc/pcre2-{pkgver} --enable-unicode --enable-jit --enable-pcre2-16 --enable-pcre2-32 --enable-pcre2grep-libz --enable-pcre2grep-libbz2 --enable-pcre2test-libreadline --disable-static", f"cd {builddir} && make -j$(nproc)", - f"cd {builddir} && make install", + f"cd {builddir} && make DESTDIR={destdir} install", # Clean for 32-bit f"cd {builddir} && make distclean",