diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-07-06 17:05:31 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-07-06 17:05:31 +0200 |
commit | d4ecdd7f249dde648514d7a45f323e845fc8f3f7 (patch) | |
tree | eec732520b21603a374928d1e8219715879712a5 /easy_e17.sh | |
parent | f3c03913bb8023a8bd706b913e89dee38e8f1432 (diff) | |
download | bin-d4ecdd7f249dde648514d7a45f323e845fc8f3f7.zip bin-d4ecdd7f249dde648514d7a45f323e845fc8f3f7.tar.gz |
easy_e17.sh: use sh to be able to run -x ./autogen.sh, ./bootstrap and ./configure scripts
Diffstat (limited to 'easy_e17.sh')
-rwxr-xr-x | easy_e17.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/easy_e17.sh b/easy_e17.sh index bcd4888..96ae3a6 100755 --- a/easy_e17.sh +++ b/easy_e17.sh @@ -1015,7 +1015,7 @@ function compile () done if [ -e "autogen.sh" ]; then if [ $make_only != 1 ]; then - run_command "$name" "$path" "autogen" "autogen: " "$mode" "./autogen.sh --prefix=$install_path $accache $args" + 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 run_command "$name" "$path" "make" "make: " "$mode" "$make -j $threads" @@ -1023,9 +1023,9 @@ function compile () run_command "$name" "$path" "install" "install: " "rootonly" "$make install" if [ ! -e "$status_path/$name.noerrors" ] ; then return ; fi elif [ -e "bootstrap" ]; then - run_command "$name" "$path" "bootstrap" "bootstr: " "$mode" "./bootstrap" + run_command "$name" "$path" "bootstrap" "bootstr: " "$mode" "sh ./bootstrap" if [ ! -e "$status_path/$name.noerrors" ] ; then return ; fi - run_command "$name" "$path" "configure" "config: " "$mode" "./configure --prefix=$install_path $accache $args" + run_command "$name" "$path" "configure" "config: " "$mode" "sh ./configure --prefix=$install_path $accache $args" if [ ! -e "$status_path/$name.noerrors" ] ; then return ; fi run_command "$name" "$path" "make" "make: " "$mode" "$make -j $threads" if [ ! -e "$status_path/$name.noerrors" ] ; then return ; fi |