summaryrefslogtreecommitdiffstats
path: root/easy_e17.sh
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-10-22 16:23:11 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-10-22 16:23:11 +0200
commitb045a528ff48795d630058b349842da79be8b4a0 (patch)
tree2212b1db799c08783e9d3b4e0a895bed4ee66ccf /easy_e17.sh
parent9c3d3e71b42ba3bd1b358cc0a7695a22ce7ece9e (diff)
downloadbin-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-xeasy_e17.sh2
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