diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-01-04 11:25:26 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-01-04 11:25:26 -0500 |
commit | 5a49b2efaa98efb2eeec97629a01c967d51c842f (patch) | |
tree | 2b673e9fd92d4267a3f0c5ed6a0a697fa4cdd393 /src | |
parent | c3e2fa07e638e5352447ab7d6c42f331ae5ab5aa (diff) |
fix mistake in conf.sh
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/conf.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/conf.sh b/src/lib/conf.sh index c5c5056..8abbc5a 100644 --- a/src/lib/conf.sh +++ b/src/lib/conf.sh @@ -101,10 +101,10 @@ load_conf_libretools_chroot() { load_files chroot # Exclude CHROOTEXTRAPKG from the checks because an empty value is valid if [[ -f /.arch-chroot ]]; then - # check_vars chroot CHROOTEXTRAPKG + # inside of a chroot, only CHROOTEXTRAPKG needs to be set, but + # as stated above, we don't check for it. : else - # check_vars chroot CHROOTDIR CHROOT CHROOTEXTRAPKG - check_vars chroot CHROOTDIR CHROOT + check_vars chroot.conf CHROOTDIR CHROOT fi } |