Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to devel-xorg-modular grimoire by Juuso Alasuutari (a113ba4d74eaff81d4c968cb96f7a323cd65ce9f)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Juuso Alasuutari <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to devel-xorg-modular grimoire by Juuso Alasuutari (a113ba4d74eaff81d4c968cb96f7a323cd65ce9f)
  • Date: Fri, 4 Jan 2008 04:03:53 -0600

GIT changes to devel-xorg-modular grimoire by Juuso Alasuutari
<iuso AT sourcemage.org>:

xorg-xserver/xorg-server/HISTORY | 3 +++
xorg-xserver/xorg-server/UP_TRIGGERS | 27 ++++++++++++++++-----------
2 files changed, 19 insertions(+), 11 deletions(-)

New commits:
commit a113ba4d74eaff81d4c968cb96f7a323cd65ce9f
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>

xorg-server: Fixed UP_TRIGGERS (#14166)

diff --git a/xorg-xserver/xorg-server/HISTORY
b/xorg-xserver/xorg-server/HISTORY
index bbd97e9..9d97374 100644
--- a/xorg-xserver/xorg-server/HISTORY
+++ b/xorg-xserver/xorg-server/HISTORY
@@ -1,3 +1,6 @@
+2008-01-04 Juuso Alasuutari <iuso AT sourcemage.org>
+ * UP_TRIGGERS: Fixed loop constructs, fixes bug #14166.
+
2007-12-25 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* DETAILS: updated spell to 1.4.0.90
fixed long description wrap
diff --git a/xorg-xserver/xorg-server/UP_TRIGGERS
b/xorg-xserver/xorg-server/UP_TRIGGERS
index d698efa..37fb5df 100755
--- a/xorg-xserver/xorg-server/UP_TRIGGERS
+++ b/xorg-xserver/xorg-server/UP_TRIGGERS
@@ -1,9 +1,10 @@
# this makes ABI changes automatically cast those that depend on openssl via
an up_trigger

-local OLD_SPELL_VERSION=""
-local each
-spell_ok $SPELL && OLD_SPELL_VERSION="$(installed_version $SPELL)"
-if [[ $OLD_SPELL_VERSION != 1.4 ]] ; then
+if ! spell_ok $SPELL ||
+ [[ $(installed_version $SPELL) != 1.4 ]]
+then
+ local each &&
+
for each in linuxwacom \
xf86-video-i128 \
xf86-input-acecad \
@@ -83,11 +84,13 @@ if [[ $OLD_SPELL_VERSION != 1.4 ]] ; then
xf86-video-glint \
xf86-video-wsfb \
mesalib
- do
- spell_ok $each && up_trigger $each cast_self
+ do
+ if spell_ok $each
+ then
+ up_trigger $each cast_self
+ fi
done
-fi
-if [[ $OLD_SPELL_VERSION != 1.4 ]] ; then
+
for each in xkbutils \
xkbcomp \
xkbprint \
@@ -96,8 +99,10 @@ if [[ $OLD_SPELL_VERSION != 1.4 ]] ; then
libxkbfile \
xkeyboard-config \
setxkbmap
- do
- spell_ok $each && up_trigger $each check_self
+ do
+ if spell_ok $each
+ then
+ up_trigger $each check_self
+ fi
done
fi
-



  • [SM-Commit] GIT changes to devel-xorg-modular grimoire by Juuso Alasuutari (a113ba4d74eaff81d4c968cb96f7a323cd65ce9f), Juuso Alasuutari, 01/04/2008

Archive powered by MHonArc 2.6.24.

Top of Page