Closed GoogleCodeExporter closed 9 years ago
As if not everyone has ~/.${CMD_BIN}.conf, so the following might be better:
---------------------------------------------------
@@ -83,7 +83,13 @@
LICENSE="GPLv3"
source /etc/makepkg.conf
+ if [ -r ~/.makepkg.conf ]; then
+ source ~/.makepkg.conf
+ fi
source /etc/${CMD_BIN}.conf
+ if [ -r ~/.${CMD_BIN}.conf ]; then
+ source ~/.${CMD_BIN}.conf
+ fi
[ -z "$CARCH" ] && CARCH="i686"
[ -z "$TMP_PATH" ] && TMP_PATH=/tmp
---------------------------------------------------
Original comment by shyo...@gmail.com
on 17 Feb 2009 at 7:08
implemented in r133
Original comment by bash.lnx@gmail.com
on 15 Apr 2009 at 5:43
Original issue reported on code.google.com by
shyo...@gmail.com
on 17 Feb 2009 at 5:44