]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_testroot
cmake: Pass CPPFLAGS in CFLAGS. Closes: #668813 Thanks, Simon Ruderich for the patch...
[debhelper.git] / dh_testroot
index b97b13bb5aa293dc8cba83c74e2e1e58bc04f1a4..c010dd507c9e6f46409326b3c74077df68e489a5 100755 (executable)
@@ -10,7 +10,7 @@ B<dh_testroot> [S<I<debhelper options>>]
 
 =head1 DESCRIPTION
 
-dh_testroot simply checks to see if you are root. If not, it exits with an
+B<dh_testroot> simply checks to see if you are root. If not, it exits with an
 error. Debian packages must be built as root, though you can use 
 L<fakeroot(1)>
 
@@ -18,6 +18,7 @@ L<fakeroot(1)>
 
 use strict;
 use Debian::Debhelper::Dh_Lib;
+inhibit_log();
 
 if ($< != 0) {
        error("You must run this as root (or use fakeroot).");
@@ -25,7 +26,7 @@ if ($< != 0) {
 
 =head1 SEE ALSO
 
-L<debhelper(1)>
+L<debhelper(7)>
 
 This program is a part of debhelper.