diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-08-15 15:35:50 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-08-15 15:35:50 -0300 |
commit | 2c4723526c438253a3a55bc80fff08b3e42fd3e1 (patch) | |
tree | 5886d058a8764707b92c5b04dd0f958bf598a762 /libremakepkg | |
parent | 6a42b684dea1611f70f78199bf356888a6978a04 (diff) | |
parent | ef7eee8a30c74760186a73e536397f8ee740a8fd (diff) |
Merge branch 'master' of ssh://gparabola/libretools
Diffstat (limited to 'libremakepkg')
-rwxr-xr-x | libremakepkg | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libremakepkg b/libremakepkg index f9f7316..ef72526 100755 --- a/libremakepkg +++ b/libremakepkg @@ -33,7 +33,7 @@ function usage { # Display message and exit echo ' -h show this message.' echo ' -c cleans the chroot before building.' echo ' -u updates the chroot before building.' - echo ' -n use this dir instead of "${CHCOPY}".' + echo ' -n use this dir instead of "${CHROOT}".' echo ' -M <--arg> passes long args to makepkg, use it as many times as needed.' echo exit 1 @@ -43,9 +43,9 @@ function buildenv { # Mounts *DEST from makepkg.conf msg "Building env" for mp in ${SRCDEST} ${PKGDEST} ${SRCPKGDEST}; do - msg2 "binding ${mp} to ${CHROOTDIR}/${CHCOPY}${mp}" - mkdir -p "${CHROOTDIR}/${CHCOPY}${mp}" - mount -o bind ${mp} "${CHROOTDIR}/${CHCOPY}${mp}" || exit 1 + msg2 "binding ${mp} to ${CHROOTDIR}/${CHROOT}${mp}" + mkdir -p "${CHROOTDIR}/${CHROOT}${mp}" + mount -o bind ${mp} "${CHROOTDIR}/${CHROOT}${mp}" || exit 1 done } @@ -91,7 +91,7 @@ function trap_exit { # End inmediately but print a useful message # args are treated as part of the message for mp in ${SRCDEST} ${PKGDEST} ${SRCPKGDEST}; do - umount "${CHROOTDIR}/${CHCOPY}${mp}" + umount "${CHROOTDIR}/${CHROOT}${mp}" done copy_log @@ -111,7 +111,7 @@ CLEAN_FIRST="n" CLEAN_CACHE="" UPDATE_FIRST="n" USE_LOG='n' -CHROOTNAME=${CHCOPY} +CHROOTNAME=${CHROOT} MAKEPKG_ARGS="" libremakepkgargs='hcuUn:I:M:' # libremakepkg own args |