From 51bae08d52d3e6013b3b0fbfb4e5193e9f7b06f4 Mon Sep 17 00:00:00 2001 From: Raul Infante-Sainz Date: Wed, 22 May 2019 10:04:49 +0100 Subject: Removing extra spaces in variable definition in configure script With this commit, extra spaces in the definition of two variables in the `configure' script have been removed. Since they are defined in a `shell' context (not in `make'), variable assignation is not allow to have any space at both sides of the `=' character. I detected these typos when trying to run `./configure' in a particular project. --- .file-metadata | Bin 6001 -> 6829 bytes configure | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.file-metadata b/.file-metadata index e28a436..f65476f 100644 Binary files a/.file-metadata and b/.file-metadata differ diff --git a/configure b/configure index af14f84..ab3ef93 100755 --- a/configure +++ b/configure @@ -679,8 +679,8 @@ if ! [ -d $mtexdir ]; then mkdir $mtexdir; fi if [ "x$reproducible_paper_group_name" = x ]; then texbdir=$texdir/build else - user = $(whoami) - texbdir = $texdir/build-$user + user=$(whoami) + texbdir=$texdir/build-$user fi if ! [ -d $texbdir ]; then mkdir $texbdir; fi -- cgit v1.2.1