summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-10-17 22:42:13 +0200
committerHaru <haru@dotalux.com>2016-10-17 22:42:13 +0200
commitb947fde2a780f4e1772c6f56f7d6b32498c7079f (patch)
tree43f02c65a61c1fdaf092d9d443496bb2d4fcb07a /configure.ac
parent981b7819acabf9faa4611124d98fae286292fdb5 (diff)
downloadhercules-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>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
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 ""