index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Felix Glaser <neindochoh.kraut@mailbox.org> | 2018-02-26 00:10:51 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2018-03-14 12:52:09 +1000 |
commit | a5dd5d41412930000d4e5ca602365639c7ccec86 (patch) | |
tree | 5ae3b58e2794b3be3bc5921c5f67ee2997556681 /scripts | |
parent | 5c1853124dcaf5d744f90f293801b0ac741674ff (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 4 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 5e3af337..b98a42a8 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -280,6 +280,10 @@ handle_deps() { source /etc/profile &>/dev/null eval "$shellopts" + # umask might have been changed in /etc/profile + # ensure that sane default is set again + umask 0022 + return $R_DEPS_SATISFIED } |