Same as #4584 but with an additional backport: https://github.com/msys2/msys2-pacman/pull/49 Old message: See msys2/msys2-pacman#45 makepkg.conf synced with the upstream version: https://gitlab.archlinux.org/pacman/pacman/-/blob/v6.1.0/etc/makepkg.conf.in Skip patches only changing CI configs
25 lines
775 B
Diff
25 lines
775 B
Diff
From a4a50b45d8e599c966a0f257cad5cf88ea010c5d Mon Sep 17 00:00:00 2001
|
|
From: Christoph Reiter <reiter.christoph@gmail.com>
|
|
Date: Tue, 28 Feb 2023 20:30:09 +0100
|
|
Subject: [PATCH 02/N] makepkg: build env export
|
|
|
|
this should be moved to the other exports really..
|
|
---
|
|
scripts/makepkg.sh.in | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
|
|
index 44025e6..6d65902 100644
|
|
--- a/scripts/makepkg.sh.in
|
|
+++ b/scripts/makepkg.sh.in
|
|
@@ -1343,6 +1343,9 @@ fi
|
|
mkdir -p "$srcdir"
|
|
chmod a-s "$srcdir"
|
|
|
|
+export MINGW_CHOST MINGW_PREFIX MINGW_PACKAGE_PREFIX
|
|
+export DXSDK_DIR ACLOCAL_PATH PKG_CONFIG_PATH
|
|
+
|
|
if (( !REPKG )); then
|
|
if (( NOEXTRACT && ! VERIFYSOURCE )); then
|
|
warning "$(gettext "Using existing %s tree")" "\$srcdir/"
|