From 2d08e902ef07b4a888fa3daf2d5a658dd04dac4e Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Sat, 21 Jan 2006 16:50:01 +0000 Subject: added a FAKEROOT define allowing to use pacman in a fakeroot enivronment (for tests purpose) --- lib/libalpm/handle.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/libalpm/handle.c') 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; -- cgit v1.2.3-54-g00ecf