diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-11-28 15:18:44 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-11-28 15:18:44 -0500 |
commit | fd1e5a426713715d9c0e3fabbfe0d8a20b629bad (patch) | |
tree | fb14943070f8271123412a03255c8021033eded8 /src/chroot-tools/libremakepkg | |
parent | 066c7716e69817af9e08782a7fbfc3dc2eb6356b (diff) |
chroot-tools: disable overriding CHROOTDIR at the command line
Diffstat (limited to 'src/chroot-tools/libremakepkg')
-rwxr-xr-x | src/chroot-tools/libremakepkg | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/chroot-tools/libremakepkg b/src/chroot-tools/libremakepkg index 4593121..faa50be 100755 --- a/src/chroot-tools/libremakepkg +++ b/src/chroot-tools/libremakepkg @@ -53,7 +53,6 @@ usage() { echo ' -u Update the chroot before building' echo ' -N Do not check freedom issues (for fullpkg)' echo '' - echo " -d <chrootdir> Use this dir instead of \`$CHROOTDIR'" echo " -n <chroot> Use this chroot instead of \`$CHROOT'" echo ' -l <copy> Use this chroot copy instead of basing it' echo ' on the username' @@ -77,7 +76,6 @@ main() { u) UPDATEFIRST=true;; N) CHECKNONFREE=false;; - d) CHROOTDIR=$OPTARG;; n) CHROOT=$OPTARG;; l) CHROOTCOPY=$OPTARG;; |