summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2014-07-11 15:04:17 +0100
committerJon TURNEY <jon.turney@dronecode.org.uk>2014-07-11 15:09:57 +0100
commit74e0ac87ddbf912db331a45e5e096d232837b5a9 (patch)
treec79ae34252a00dc333366cbc967ae040c359d239
parentaaf11386bfd8f0cfc442570a92067f5b371caf71 (diff)
Update jhbuild_repository_configure for changed xorg.modules names
-rwxr-xr-xjhbuild_repository_configure13
1 files changed, 7 insertions, 6 deletions
diff --git a/jhbuild_repository_configure b/jhbuild_repository_configure
index 47dd600..54a53ac 100755
--- a/jhbuild_repository_configure
+++ b/jhbuild_repository_configure
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
function repository_configure ()
{
@@ -23,17 +23,17 @@ function repository_configure ()
EMAIL="xcb@lists.freedesktop.org"
SUBJECT="PATCH"
;;
- xcb* | pthread-stubs | proto)
+ xcb-*)
EMAIL="xcb@lists.freedesktop.org"
SUBJECT="PATCH $i"
;;
- libGL)
+ mesa-mesa)
EMAIL="mesa-dev@lists.freedesktop.org"
SUBJECT="PATCH"
;;
- mesa-demos)
+ mesa-*)
EMAIL="mesa-dev@lists.freedesktop.org"
- SUBJECT="PATCH mesa-demos"
+ SUBJECT="PATCH $i"
;;
fontconfig)
EMAIL="fontconfig@lists.freedesktop.org"
@@ -43,7 +43,7 @@ function repository_configure ()
EMAIL="" # requests patch submission via bugzilla
SUBJECT="PATCH"
;;
- pixman)
+ libpixman)
EMAIL="pixman@lists.freedesktop.org"
SUBJECT="PATCH"
;;
@@ -74,6 +74,7 @@ else
ARGS=`jhbuild -f jhbuildrc list`
fi
+IFS=$'\n'
for i in $ARGS ; do
repository_configure $i
done