diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-12-11 00:17:09 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-12-11 00:17:09 -0500 |
commit | 4840335e2c90048a64dee4556c4764d2abc5577f (patch) | |
tree | ff7a0f5ca09dfc5823e81fb29060bfcd51fa79d8 | |
parent | b9651a0ae4ca73a13f82a3a8622a01b044e452ba (diff) |
fix HOME/LIBREHOME bug in libremakepkg.gpl2
-rwxr-xr-x | src/chroot-tools/libremakepkg.gpl2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chroot-tools/libremakepkg.gpl2 b/src/chroot-tools/libremakepkg.gpl2 index 8770bee..6b7180b 100755 --- a/src/chroot-tools/libremakepkg.gpl2 +++ b/src/chroot-tools/libremakepkg.gpl2 @@ -18,7 +18,7 @@ chroot_init() { librechroot -n "$CHROOT" -l "$CHROOTCOPY" -m if [[ -r "$LIBREHOME/.gnupg/pubring.gpg" ]]; then - install -D "$HOME/.gnupg/pubring.gpg" "$copydir/build/.gnupg/pubring.gpg" + install -D "$LIBREHOME/.gnupg/pubring.gpg" "$copydir/build/.gnupg/pubring.gpg" fi rm -f "$copydir/build/.makepkg.conf" |