diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-10-22 16:23:11 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-10-22 16:23:11 +0200 |
commit | b045a528ff48795d630058b349842da79be8b4a0 (patch) | |
tree | 2212b1db799c08783e9d3b4e0a895bed4ee66ccf /easy_e17.sh | |
parent | 9c3d3e71b42ba3bd1b358cc0a7695a22ce7ece9e (diff) | |
download | bin-b045a528ff48795d630058b349842da79be8b4a0.zip bin-b045a528ff48795d630058b349842da79be8b4a0.tar.gz |
easy_e17.sh: do not satisfy if Makefile does not exists
Diffstat (limited to 'easy_e17.sh')
-rwxr-xr-x | easy_e17.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/easy_e17.sh b/easy_e17.sh index 6276ac7..81c378e 100755 --- a/easy_e17.sh +++ b/easy_e17.sh @@ -1091,7 +1091,7 @@ function compile () if [ ! -e "$status_path/$name.noerrors" ] ; then return ; fi cd .. elif [ -e "autogen.sh" ]; then - if [ $package_make_only != 1 -o $package_clean -gt 1 ]; then + if [ ! -e "Makefile" ] || [ $package_make_only != 1 ] || [ $package_clean -gt 1 ]; then run_command "$name" "$path" "autogen" "autogen: " "$mode" "sh ./autogen.sh --prefix=$install_path $accache $args" if [ ! -e "$status_path/$name.noerrors" ] ; then return ; fi fi |