summaryrefslogtreecommitdiff
path: root/libremkchroot
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-10-29 16:00:09 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-10-29 16:00:09 -0300
commitbb356fb2f9de3991e4dfe04409d27d348f69ac66 (patch)
tree82dba036948c6f971935eb99fc2583585334f46c /libremkchroot
parent7389eee3207cf2e06b6392cac3cdbe622d284df7 (diff)
parentaae1b41ea2644da980a1645ee9e27dfe7560ec2e (diff)
Merge branch 'master' into tokyo
Conflicts: update-cleansystem
Diffstat (limited to 'libremkchroot')
-rwxr-xr-xlibremkchroot13
1 files changed, 5 insertions, 8 deletions
diff --git a/libremkchroot b/libremkchroot
index c1f2072..b576209 100755
--- a/libremkchroot
+++ b/libremkchroot
@@ -2,7 +2,7 @@
# LibreMkChroot
# Creates a chroot
-# Copyright 2011 Luke Shumaker
+# Copyright 2011, 2012 Luke Shumaker
# ---------- GNU General Public License 3 ----------
@@ -27,10 +27,7 @@ if [ -e "$XDG_CONFIG_HOME/libretools/libretools.conf" ]; then
source "$XDG_CONFIG_HOME/libretools/libretools.conf"
fi
-#CHROOTNAME="${CHROOT:-${SUDO_USER:-root}}"
-
cmd=${0##*/}
-
function usage {
echo "Usage: $cmd [OPTIONS]"
echo 'This script will create a chroot to build packages in.'
@@ -47,12 +44,12 @@ function usage {
echo ' -M <file> Location of makepkg config file.'
}
-mkchroot_args='';
+mkchroot_args=();
while getopts 'hfd:c:C:M:' arg; do
case "$arg" in
h) usage; exit 0 ;;
- f) mkchroot_args="$mkchroot_args -$arg" ;;
- c|C|M) mkchroot_args="$mkchroot_args -$arg $OPTARG" ;;
+ f) mkchroot_args+=("-$arg");;
+ c|C|M) mkchroot_args+=("-$arg" "$OPTARG");;
d) CHROOTDIR=$OPTARG ;;
?) usage; exit 1 ;;
esac
@@ -64,4 +61,4 @@ if (( EUID )); then
fi
mkdir -p "${CHROOTDIR}"
-xargs -d'\n' mkarchroot $mkchroot_args "${CHROOTDIR}/root" < /etc/libretools.d/cleansystem
+xargs -d'\n' mkarchroot "${mkchroot_args[@]}" "${CHROOTDIR}/root" < /etc/libretools.d/cleansystem