aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2018-11-18 19:45:46 +0000
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2018-11-18 19:49:13 +0000
commit6a9990b5a4d13d7628902b0dc067c74e782922de (patch)
tree58411b1eb165fb18c18fb8386b82076682409915 /configure
parentb15818ddc06d499bac1bac5640682d40901e9588 (diff)
Pipeline also installs TeX live and necessary packages
Since the final product of the pipeline is a LaTeX-created PDF file, it was necessary to also have LaTeX within the pipeline. With this commit, TeX Live is also built as part of the configuration and all the necessary packages to build the PDF are also installed and mentioned in the paper along with their versions.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure b/configure
index 5f21e04..0663e15 100755
--- a/configure
+++ b/configure
@@ -145,6 +145,7 @@ if [ -f $pconf ] || [ -f $glconf ]; then
do
read -p"Re-write existing configuration file(s) (y/n)? " userread
done
+ userread=n
# Set `rewriteconfig'.
if [ $userread = "n" ]; then
@@ -408,8 +409,8 @@ ln -s $(pwd)/reproduce/config/gnuastro .gnuastro
# See if the C compiler can build static libraries
# ------------------------------------------------
-oprog=$ddir/static-test
-cprog=$ddir/static-test.c
+oprog=$depdir/static-test
+cprog=$depdir/static-test.c
echo "#include <stdio.h>" > $cprog
echo "int main(void) {return 0;}" >> $cprog
if [ x$CC = x ]; then CC=gcc; fi;
@@ -452,7 +453,7 @@ fi
# Inform the user that the build process is starting
# -------------------------------------------------
-tsec=0
+tsec=10
cat <<EOF
-------------------------