index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Sebastian Nowicki <sebnow@gmail.com> | 2008-05-28 03:22:08 +0800 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-05-29 06:37:14 -0500 |
commit | c33cabd6751d1d5903898c911701ce20cf77598d (patch) | |
tree | aa8660f8d900091a24c5e0930c4210041fc83a96 | |
parent | 20ae871940b8b7f773b0fdc31f8e053cc3cf4884 (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 4 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index a312b493..762ae2be 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -635,8 +635,8 @@ extract_sources() { done if [ $EUID -eq 0 ]; then - # chown all source files to root.root - chown -R root.root "$srcdir" + # change perms of all source files to root user & root group + chown -R 0:0 "$srcdir" fi } |