diff options
author | Haru <haru@dotalux.com> | 2016-10-17 22:42:13 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-10-17 22:42:13 +0200 |
commit | b947fde2a780f4e1772c6f56f7d6b32498c7079f (patch) | |
tree | 43f02c65a61c1fdaf092d9d443496bb2d4fcb07a | |
parent | 981b7819acabf9faa4611124d98fae286292fdb5 (diff) | |
download | hercules-b947fde2a780f4e1772c6f56f7d6b32498c7079f.tar.gz hercules-b947fde2a780f4e1772c6f56f7d6b32498c7079f.tar.bz2 hercules-b947fde2a780f4e1772c6f56f7d6b32498c7079f.tar.xz hercules-b947fde2a780f4e1772c6f56f7d6b32498c7079f.zip |
Corrected an inverted superuser check causing unnecessarily slow GitLab builds
Signed-off-by: Haru <haru@dotalux.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 10692f957..34cbee61a 100644 --- a/configure.ac +++ b/configure.ac @@ -44,7 +44,7 @@ case $host_os in CYGWIN*) ;; *) - if type id >/dev/null 2>&1 && test -n "$CI"; then + if type id >/dev/null 2>&1 && test -z "$CI"; then euid="`id -u`" if test "$euid" == "0"; then echo "" |