diff options
Diffstat (limited to 'src/chroot-tools/libremkchroot')
-rwxr-xr-x | src/chroot-tools/libremkchroot | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/chroot-tools/libremkchroot b/src/chroot-tools/libremkchroot index cc5b431..08f69b1 100755 --- a/src/chroot-tools/libremkchroot +++ b/src/chroot-tools/libremkchroot @@ -35,7 +35,6 @@ usage() { echo 'Options:' echo ' -h Show this message' echo '' - echo ' -d <chrootdir> Use this dir instead of "$CHROOTDIR".' echo ' -C <file> Location of pacman config file.' echo ' -M <file> Location of makepkg config file.' } @@ -45,7 +44,6 @@ main() { while getopts 'hfd:C:M:' arg; do case "$arg" in C|M) mkarchroot_args+=("-$arg" "$OPTARG");; - d) CHROOTDIR=$OPTARG;; h) usage; exit 0;; *) usage; exit 1;; |