bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/apps/extra.git/commit/?id=aa0a82f61f577a63f10ed3e636667b13a92d8e5e
commit aa0a82f61f577a63f10ed3e636667b13a92d8e5e Author: Daniel Haß <a...@hass.onl> Date: Sun Feb 5 21:44:04 2017 +0100 fixed if condition in autogen.sh --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 0ed846b..1762b7d 100755 --- a/autogen.sh +++ b/autogen.sh @@ -3,7 +3,7 @@ rm -rf autom4te.cache rm -f aclocal.m4 ltmain.sh -if [ -d ".git"]; then +if [ -d ".git" ]; then echo "Getting all submodules" if [ $(git submodule status | cut -c1 | grep "-") ]; then echo "A few submodules are not initializied." --