119 | | # Check for sudo |
120 | | if os.getuid() == 0: |
121 | | print '=================================================================================' |
122 | | print ' *** Do not run configure as root, or using sudo. ***' |
123 | | print ' *** Use the --with-sudo=sudo option to have ***' |
124 | | print ' *** installs of external packages done with sudo ***' |
125 | | print ' *** use only with --prefix= when installing in ***' |
126 | | print ' *** system directories ***' |
127 | | print '=================================================================================' |
128 | | sys.exit(3) |
129 | | |