@@ -13,8 +13,10 @@ else
fi
# Source user-specific makepkg.conf overrides
-if [[ -r ~/.makepkg.conf ]]; then
- source ~/.makepkg.conf
+if [[ -r "${XDG_CONFIG_HOME:-$HOME/.config}/pacman/makepkg.conf" ]]; then
+ source "${XDG_CONFIG_HOME:-$HOME/.config}/pacman/makepkg.conf"
+elif [[ -r "$HOME/.makepkg.conf" ]]; then
+ source "$HOME/.makepkg.conf"
fi
if [[ ! -f PKGBUILD ]]; then
@@ -11,8 +11,10 @@ else
fi
# Source user-specific makepkg.conf overrides
-if [[ -r ~/.makepkg.conf ]]; then
- . ~/.makepkg.conf
+if [[ -r "${XDG_CONFIG_HOME:-$HOME/.config}/pacman/makepkg.conf" ]]; then
+ source "${XDG_CONFIG_HOME:-$HOME/.config}/pacman/makepkg.conf"
+elif [[ -r "$HOME/.makepkg.conf" ]]; then
+ source "$HOME/.makepkg.conf"
fi
cmd=${0##*/}
@@ -26,6 +26,13 @@ else
die '/etc/makepkg.conf not found!'
fi
+# Source user-specific makepkg.conf overrides
+if [[ -r "${XDG_CONFIG_HOME:-$HOME/.config}/pacman/makepkg.conf" ]]; then
+ source "${XDG_CONFIG_HOME:-$HOME/.config}/pacman/makepkg.conf"
+elif [[ -r "$HOME/.makepkg.conf" ]]; then
+ source "$HOME/.makepkg.conf"
+fi
+
bump_pkgrel() {
# Get the current pkgrel from SVN and update the working copy with it
# This prevents us from incrementing out of control :)
From: Luke Shumaker <lukeshu@parabola.nu> - checkpkg: Check ~/.config/pacman/makepkg.conf ; not just ~/.makepkg.conf - commitpkg: Likewise - rebuildpkgs: Check for user makepkg.conf files, not just the system one in /etc --- checkpkg.in | 6 ++++-- commitpkg.in | 6 ++++-- rebuildpkgs.in | 7 +++++++ 3 files changed, 15 insertions(+), 4 deletions(-)