25 lines
790 B
Diff
25 lines
790 B
Diff
From c8025392f733b5b28687a8b468191354cd037415 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 04/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 048d90d..2a85702 100644
|
|
--- a/scripts/makepkg.sh.in
|
|
+++ b/scripts/makepkg.sh.in
|
|
@@ -1425,6 +1425,9 @@ mkdir -p "$srcdir"
|
|
chmod a-s "$srcdir"
|
|
cd_safe "$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/"
|