summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/handle.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libalpm/handle.c')
-rw-r--r--lib/libalpm/handle.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libalpm/handle.c b/lib/libalpm/handle.c
index 59ba46ed..b8a6713b 100644
--- a/lib/libalpm/handle.c
+++ b/lib/libalpm/handle.c
@@ -55,13 +55,19 @@ pmhandle_t *handle_new()
#ifndef CYGWIN
/* see if we're root or not */
handle->uid = geteuid();
+#ifndef FAKEROOT
if(!handle->uid && getenv("FAKEROOTKEY")) {
/* fakeroot doesn't count, we're non-root */
handle->uid = 99;
}
+#endif
/* see if we're root or not (fakeroot does not count) */
+#ifndef FAKEROOT
if(handle->uid == 0 && !getenv("FAKEROOTKEY")) {
+#else
+ if(handle->uid == 0) {
+#endif
handle->access = PM_ACCESS_RW;
} else {
handle->access = PM_ACCESS_RO;