changeset 441:7a1e7fac56c0

Bugfixes to previous improvements. :)
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 06 Jan 2007 09:22:05 +0000
parents 1b4221cb1145
children 94c531f0c0a4
files bootstrap.sh
diffstat 1 files changed, 6 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/bootstrap.sh	Sat Jan 06 08:31:04 2007 +0000
+++ b/bootstrap.sh	Sat Jan 06 09:22:05 2007 +0000
@@ -83,9 +83,12 @@
 ftest_am_package "automake" "-a -c -f --foreign"
 ftest_ac_package "autoconf" ""
 
-if test -e `echo *.glade`; then
-	echo "* Glade XML files found"
-	ftest_package "glade" "-w xmms-sid.glade" "Glade" "Glade for Gtk+1 applications (Glade v0.6.4)"
+k=`echo *.glade`
+if test "x$k" != "x*.glade"; then
+	echo "* Glade XML files found, processing ..."
+	for i in *.glade; do
+		ftest_package "glade" "-w $i" "Glade" "Glade for Gtk+1 applications (Glade v0.6.4)"
+	done
 else
 	echo "* No Glade files found, skipping."
 fi