summaryrefslogtreecommitdiffstats
path: root/wayland.sh
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-05-14 08:21:42 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2012-05-14 08:21:42 +0200
commit5eff5cb903e806ec5882b61a31bba07710e34f6e (patch)
tree31c2ae720964dce4dec9650f1c22d60e6303d8dd /wayland.sh
parent64337f947d560c5a1fa064d709e6d2e0a6deb348 (diff)
parentcaff24927cba8f787a90a7d22e4fadfc9f082c28 (diff)
downloadbin-5eff5cb903e806ec5882b61a31bba07710e34f6e.zip
bin-5eff5cb903e806ec5882b61a31bba07710e34f6e.tar.gz
Merge branch 'master' of asynk.ch:bin
Diffstat (limited to 'wayland.sh')
-rwxr-xr-xwayland.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/wayland.sh b/wayland.sh
index 50a1457..17517a6 100755
--- a/wayland.sh
+++ b/wayland.sh
@@ -49,7 +49,7 @@ echo
function build () {
if [ $FORCE_AUTOGEN -eq 1 -o ! -e Makefile ]; then
- say " * autogen --prefix=$WLD $my_configure_opts" && ./autogen.sh --prefix=$WLD $my_configure_opts
+ say " * autogen.sh --prefix=$WLD $my_configure_opts" && ./autogen.sh --prefix=$WLD $my_configure_opts
fi
if [ $FORCE_DISTCLEAN -eq 1 ]; then
say " * make distclean" && make distclean >/dev/null
@@ -74,7 +74,7 @@ function do_your_job () {
if [ -d "$my_dir" ]; then
cd "$my_dir" && update && cd .. || error
else
- say " * clone $my_src" && git clone "$my_src" "$my_dir" && cd "$my_dir" && autogen && cd .. || error
+ say " * clone $my_src" && git clone "$my_src" "$my_dir" && cd "$my_dir" && build && cd .. || error
fi
}
@@ -87,6 +87,13 @@ my_src=git://anongit.freedesktop.org/wayland/wayland
my_configure_opts=
do_your_job
+# WESTON
+say "weston"
+my_dir=weston
+my_src=git://anongit.freedesktop.org/wayland/weston
+my_configure_opts=
+do_your_job
+
# WAYLAND-DEMOS
say "wayland-demos"
my_dir=wayland-demos