diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-13 23:38:16 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-13 23:38:16 +0200 |
commit | caff24927cba8f787a90a7d22e4fadfc9f082c28 (patch) | |
tree | 695457dce8523f9ebb962880e3be3deb3222d875 /wayland.sh | |
parent | d565185909a8fc6e25572b1db893a41ec27f136c (diff) | |
download | bin-caff24927cba8f787a90a7d22e4fadfc9f082c28.zip bin-caff24927cba8f787a90a7d22e4fadfc9f082c28.tar.gz |
wayland.sh: add weston, fix typos
Diffstat (limited to 'wayland.sh')
-rwxr-xr-x | wayland.sh | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -47,7 +47,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 @@ -72,7 +72,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 say " * SUCCESS\n" } @@ -86,6 +86,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 |