diff options
author | Chirantan Ekbote <chirantan.ekbote@gmail.com> | 2013-02-01 04:24:22 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-02-07 01:48:11 +0100 |
commit | 2f137fdd39d1441f961757ccb1f1e6f6670ac72a (patch) | |
tree | 693e4f7351797eaf4e17c3c1e3ded28dae7d356b | |
parent | 1631255357c248ed827c14ce51e3648c74d0adbf (diff) | |
download | pacman-2f137fdd39d1441f961757ccb1f1e6f6670ac72a.tar.gz pacman-2f137fdd39d1441f961757ccb1f1e6f6670ac72a.tar.xz |
Print a warning if fakechroot is not found
Fixes FS#33551.
Signed-off-by: Chirantan Ekbote <chirantan.ekbote@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r-- | test/pacman/pmtest.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/pacman/pmtest.py b/test/pacman/pmtest.py index 1d198f04..d1415677 100644 --- a/test/pacman/pmtest.py +++ b/test/pacman/pmtest.py @@ -204,7 +204,9 @@ class pmtest(object): cmd.append("fakeroot") fakechroot = util.which("fakechroot") - if fakechroot: + if not fakechroot: + print "WARNING: fakechroot not found!" + else: cmd.append("fakechroot") if pacman["gdb"]: |