summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2010-12-09 12:06:09 +0000
committerRichard W.M. Jones <rjones@redhat.com>2010-12-09 16:41:40 +0000
commit8e4c22db236f08f836a8ab94c8bb025d727684b5 (patch)
tree55ba7d410386e3abe7f6ce5217e73b2ac3a44a39 /src
parent75893a554c374f59318844bca3433e6a2d6c774b (diff)
downloadlibguestfs-8e4c22db236f08f836a8ab94c8bb025d727684b5.tar.gz
libguestfs-8e4c22db236f08f836a8ab94c8bb025d727684b5.tar.xz
libguestfs-8e4c22db236f08f836a8ab94c8bb025d727684b5.zip
build: Remove check for root.
With the new package building system, it is no longer dangerous to run 'configure', 'make' or 'make check' as root (although it is still not necessary and not advisable). In any case we don't need to check this.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 4827e271..2b9c49ba 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -186,14 +186,3 @@ stamp-guestfs.pod: guestfs.pod \
--insert guestfs-structs.pod:@STRUCTS@ \
$<
touch $@
-
-# Check user doesn't try to do 'make all' or 'make check' as root.
-# https://www.redhat.com/archives/libguestfs/2010-April/msg00098.html
-
-all-local: checkroot
-check-local: checkroot
-checkroot:
- @if [ "`id -u`" = 0 ]; then \
- echo "*** Error: Don't run 'make' or 'make check' as root."; \
- exit 1; \
- fi