Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Thomas Orgis (b722ef5392199e8ddf41fe918e4e5cfe3b159565)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Thomas Orgis <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Thomas Orgis (b722ef5392199e8ddf41fe918e4e5cfe3b159565)
  • Date: Fri, 20 Mar 2015 03:13:03 -0500

GIT changes to master grimoire by Thomas Orgis <sobukus AT sourcemage.org>:

graphics-libs/mesalib/HISTORY | 3 +++
graphics-libs/mesalib/UP_TRIGGERS | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit b722ef5392199e8ddf41fe918e4e5cfe3b159565
Author: Thomas Orgis <sobukus AT sourcemage.org>
Commit: Thomas Orgis <sobukus AT sourcemage.org>

mesalib: avoid grep -P in UP_TRIGGERS

diff --git a/graphics-libs/mesalib/HISTORY b/graphics-libs/mesalib/HISTORY
index b2155f9..3a68ef3 100644
--- a/graphics-libs/mesalib/HISTORY
+++ b/graphics-libs/mesalib/HISTORY
@@ -1,3 +1,6 @@
+2015-03-20 Thomas Orgis <sobukus AT sourcemage.org>
+ * UP_TRIGGERS: Use plain grep, not grep -P. This is an optional
feature.
+
2015-03-19 Sukneet Basuta <sukneet AT sourcemage.org>
* gl_select.patch: update to put libGLES files under .mesa

diff --git a/graphics-libs/mesalib/UP_TRIGGERS
b/graphics-libs/mesalib/UP_TRIGGERS
index 45ea2fd..92883da 100755
--- a/graphics-libs/mesalib/UP_TRIGGERS
+++ b/graphics-libs/mesalib/UP_TRIGGERS
@@ -10,7 +10,7 @@ if spell_ok $SPELL; then
| grep '\<ELF\>.*\<dynamically linked\>' \
| cut -d: -f1 \
| xargs readelf -d 2> /dev/null \
- | grep -q -P 'NEEDED\)\s*Shared library: \[libGL'; then
+ | grep -q 'NEEDED)\s*Shared library:\s*\[libGL'; then
up_trigger $other_spell cast_self
fi
done



  • [SM-Commit] GIT changes to master grimoire by Thomas Orgis (b722ef5392199e8ddf41fe918e4e5cfe3b159565), Thomas Orgis, 03/20/2015

Archive powered by MHonArc 2.6.24.

Top of Page