diff options
author | James Booth <boothj5@gmail.com> | 2013-11-20 23:10:45 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-11-20 23:10:45 +0000 |
commit | bdb8ea3f089da782bde114447062c10f76f82716 (patch) | |
tree | f8a1d6c2d4f75be3741fb73592dbf3b1ad46f17b | |
parent | 59c9e23bfa53d70ca20a6b83e840c8340bb6495d (diff) | |
download | profani-tty-bdb8ea3f089da782bde114447062c10f76f82716.tar.gz |
Call ./bootstrap.sh if development build in install-all.sh
-rwxr-xr-x | install-all.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/install-all.sh b/install-all.sh index 2425ef5d..42deaf1a 100755 --- a/install-all.sh +++ b/install-all.sh @@ -1,5 +1,7 @@ #!/bin/sh +STATUS=development + debian_prepare() { echo @@ -68,6 +70,9 @@ install_profanity() echo echo Profanity installer... installing Profanity echo + if [ "${STATUS}" = "development" ]; then + ./bootstrap.sh + fi ./configure make sudo make install @@ -94,6 +99,9 @@ cyg_install_profanity() echo echo Profanity installer... installing Profanity echo + if [ "${STATUS}" = "development" ]; then + ./bootstrap.sh + fi ./configure make make install |