summaryrefslogtreecommitdiff
path: root/src/chroot-tools/libremakepkg
diff options
context:
space:
mode:
Diffstat (limited to 'src/chroot-tools/libremakepkg')
-rwxr-xr-xsrc/chroot-tools/libremakepkg6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/chroot-tools/libremakepkg b/src/chroot-tools/libremakepkg
index a146627..3fa2f3d 100755
--- a/src/chroot-tools/libremakepkg
+++ b/src/chroot-tools/libremakepkg
@@ -29,7 +29,7 @@
# copy logs if they exist
##
copy_log() {
- find "${chroot_path}/build/" -maxdepth 1 -name "*\.log" -exec cp {} ./ \;
+ find "${copydir}/build/" -maxdepth 1 -name "*\.log" -exec cp {} ./ \;
}
##
@@ -89,6 +89,10 @@ main() {
# Pass all arguments after -- right to makechrootpkg
makechrootpkg_args+=("$@")
+ # not local
+ rootdir="${CHROOTDIR}/${CHROOT}/root"
+ copydir="${CHROOTDIR}/${CHROOT}/${CHROOTCOPY}"
+
if (( EUID )); then
error "This script must be run as root"
exit 1