summaryrefslogtreecommitdiff
path: root/roll-it-up.sh
diff options
context:
space:
mode:
authorAlan Coopersmith <alanc@freedesktop.org>2012-04-15 09:50:48 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2012-04-15 10:27:06 -0700
commite6d677f3fbf3da6dc99f78977a111c0f623a95a0 (patch)
tree9adea8a1ded7c569a9ceaf4c95e3852f29b28042 /roll-it-up.sh
parent32c0a70e80f8ed14a91ecec920dab8936a658284 (diff)
roll-it-up.sh: Better fix for including xcb modules that doesn't delete them
Uses the xcb symlink now present under the individual directory Signed-off-by: Alan Coopersmith <alanc@freedesktop.org>
Diffstat (limited to 'roll-it-up.sh')
-rwxr-xr-xroll-it-up.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/roll-it-up.sh b/roll-it-up.sh
index fd426c6..fcf00bd 100755
--- a/roll-it-up.sh
+++ b/roll-it-up.sh
@@ -17,7 +17,12 @@ mkdir -p everything
while read name; do
list=`find $individual_dir -name $name.tar\* `
if test "x$list" = x; then
- echo "Couldn't find module ${name}"
+ # Since .../xcb is a symlink, find doesn't follow it normally,
+ # so explicitly double-check there
+ list=`find ${individual_dir}xcb/ -name $name.tar\* `
+ if test "x$list" = x; then
+ echo "Couldn't find module ${name}"
+ fi
fi
for i in $list; do
i=`echo $i | sed "s|$individual_dir||g"`