summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-09-05 15:15:59 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-09-05 18:21:45 +0200
commit033a68c49fe2b8aa397832d92d400eb0259ea809 (patch)
treeb35abfadc8dd026c31c0196a088d0a9dfca7fcf9 /Makefile.in
parentd70bf1c4caf37f38166b5f1facc08264cd203f92 (diff)
improve error message when building as root
Change-Id: I496e439e2f7e24c05f798f1a7ed0081ca0725f5c Reviewed-on: https://gerrit.libreoffice.org/60037 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 324e0af03026..62964a7ccb7d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -62,7 +62,7 @@ all: build
check-if-root:
@if test ! `uname` = 'Haiku' -a `id -u` = 0 && ! grep -q 'lxc\|docker' /proc/self/cgroup; then \
echo; \
- echo 'No. You make ME a sandwich.'; \
+ echo 'Building LibreOffice as root is a very bad idea, use a regular user.'; \
echo; \
exit 1; \
fi