Skip to Content.
Sympa Menu

sm-commit - [[SM-Commit] ] GIT changes to master grimoire by Justin Boffemmyer (a0542e778a9146074b55b75790bd6a9b86f9ae74)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Justin Boffemmyer <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org, sm-commit AT lists.sourcemage.org
  • Subject: [[SM-Commit] ] GIT changes to master grimoire by Justin Boffemmyer (a0542e778a9146074b55b75790bd6a9b86f9ae74)
  • Date: Mon, 20 Jan 2025 09:07:54 +0000

GIT changes to master grimoire by Justin Boffemmyer <flux AT sourcemage.org>:

graphics-libs/mesa/CONFIGURE | 2 +-
graphics-libs/mesa/DEPENDS | 2 +-
graphics-libs/mesa/HISTORY | 3 +++
3 files changed, 5 insertions(+), 2 deletions(-)

New commits:
commit a0542e778a9146074b55b75790bd6a9b86f9ae74
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Justin Boffemmyer <flux AT sourcemage.org>

devel/llvm: fix typos

Correct some typos that resulted in failed if-block conditionals in
CONFIGURE and DEPENDS.

diff --git a/graphics-libs/mesa/CONFIGURE b/graphics-libs/mesa/CONFIGURE
index 54acee1..74af054 100755
--- a/graphics-libs/mesa/CONFIGURE
+++ b/graphics-libs/mesa/CONFIGURE
@@ -155,7 +155,7 @@ config_query_multi MESA_TOOLS "Which tools to build?" \

config_query MESA_PERFETTO "Enable performance analysis with Perfetto" n &&

-if [[ "${MESA_PERFETTO#perfetto=}" == "true" ]] ;then
+if [[ "$MESA_PERFETTO" == "y" ]] ;then
config_query_multi MESA_PERFETTO_SOURCES "Perfetto datasources to build" \
auto \
intel
diff --git a/graphics-libs/mesa/DEPENDS b/graphics-libs/mesa/DEPENDS
index 697206f..c83ad0d 100755
--- a/graphics-libs/mesa/DEPENDS
+++ b/graphics-libs/mesa/DEPENDS
@@ -27,7 +27,7 @@ if list_find "$MESA_GALLIUM" llvmpipe ;then
fi &&

if list_find "$MESA_VULKAN" amd ;then
- if "$MESA_AMD_LLVM" == "y" ]] ;then
+ if [[ "$MESA_AMD_LLVM" == "y" ]] ;then
need_llvm="y"
fi
fi &&
diff --git a/graphics-libs/mesa/HISTORY b/graphics-libs/mesa/HISTORY
index ea20b5b..3270490 100644
--- a/graphics-libs/mesa/HISTORY
+++ b/graphics-libs/mesa/HISTORY
@@ -1,4 +1,7 @@
2025-01-20 Justin Boffemmyer <flux AT sourcemage.org>
+ * CONFIGURE, DEPENDS: fix typos
+
+2025-01-20 Justin Boffemmyer <flux AT sourcemage.org>
* BUILD: remove -DPIC from CXXFLAGS to prevent build errors

2025-01-19 Justin Boffemmyer <flux AT sourcemage.org>


  • [[SM-Commit] ] GIT changes to master grimoire by Justin Boffemmyer (a0542e778a9146074b55b75790bd6a9b86f9ae74), Justin Boffemmyer, 01/20/2025

Archive powered by MHonArc 2.6.24.

Top of Page