diff options
author | Andrew Fyfe <andrew@neptune-one.net> | 2007-05-28 20:49:28 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-05-29 17:49:24 -0400 |
commit | 5c41d0eb4c7034998d9718f89e12f44fe872ab9a (patch) | |
tree | 92905a04a5987ab7e9ec17515417d16cffb556b4 /scripts/repo-remove.in | |
parent | d255d511aa9cbfa7b3bf056908c07f5afed69b72 (diff) | |
download | pacman-5c41d0eb4c7034998d9718f89e12f44fe872ab9a.tar.xz |
Substitute config directory in scripts.
Signed-off-by: Andrew Fyfe <andrew@neptune-one.net>
Diffstat (limited to 'scripts/repo-remove.in')
-rw-r--r-- | scripts/repo-remove.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/repo-remove.in b/scripts/repo-remove.in index 18291f65..0bb37075 100644 --- a/scripts/repo-remove.in +++ b/scripts/repo-remove.in @@ -93,8 +93,8 @@ if [ $# -lt 2 ]; then fi # source system and user makepkg.conf -if [ -r /etc/makepkg.conf ]; then - source /etc/makepkg.conf +if [ -r @SYSCONFDIR@/makepkg.conf ]; then + source @SYSCONFDIR@/makepkg.conf else echo "ERROR: /etc/makepkg.conf not found. Can not continue." >&2 exit 1 # $E_CONFIG_ERROR # TODO: error codes |