summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-03-14 14:34:22 +0100
committerLuboš Luňák <l.lunak@suse.cz>2012-03-15 14:22:58 +0100
commitc5489e31b625e08fa2427108d5e710aba4468a27 (patch)
tree0784bf1a801a6a4491e60b3e4c71d3d9fe6fc7c3 /configure.in
parentRevert "fix setting of paper tray from print dialog (fdo#43932)" (diff)
downloadcore-c5489e31b625e08fa2427108d5e710aba4468a27.tar.gz
core-c5489e31b625e08fa2427108d5e710aba4468a27.zip
need to be afraid of empty quoted strings as test arguments
At least 07a841bc1acde95229ece2a0da4e2a70be5df624 says so.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index e0bc4ddb2b24..f71014dde0d2 100644
--- a/configure.in
+++ b/configure.in
@@ -79,7 +79,7 @@ AC_SUBST(x_Cygwin)
cat /dev/null > warn
-if test "$EUID" = "0" -a "`uname -o 2>/dev/null`" = "Cygwin"; then
+if test "z$EUID" = "z0" -a "`uname -o 2>/dev/null`" = "Cygwin"; then
AC_MSG_ERROR([You must build LibreOffice as a normal user - not using an administrative account])
fi