diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-02-23 15:04:24 -0800 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-02-23 15:04:24 -0800 |
commit | 623acfaa9e77a20dff1949af126fa5e9edc9c14a (patch) | |
tree | bc01169c0f2d0646c13fdd2463733b628dae4c53 | |
parent | dd45bbcaf3dc9500613a595f63c0fa8b54ab0098 (diff) | |
download | devtools32-623acfaa9e77a20dff1949af126fa5e9edc9c14a.tar.xz |
Change makechrootpkg -i arg to -I
This way we don't conflict with makepkg's -i, which
could be useful to us
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-x | makechrootpkg | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/makechrootpkg b/makechrootpkg index 8fa720d..43a2253 100755 --- a/makechrootpkg +++ b/makechrootpkg @@ -23,7 +23,7 @@ APPNAME=$(basename "${0}") usage () { - echo "usage ${APPNAME} [-hcui] [-r CHROOT_SHELL] [--] [makepkg args]" + echo "usage ${APPNAME} [-hcuI] [-r CHROOT_SHELL] [--] [makepkg args]" echo " Run this script in a PKGBUILD dir to build a package inside a" echo " clean chroot. All unrecognized arguments passed to this script" echo " will be passed to makepkg." @@ -48,14 +48,14 @@ usage () echo "-u Update the rw layer of the chroot before building" echo " This is useful for rebuilds without dirtying the pristine" echo " chroot" - echo "-i <pkg> Install a package into the rw layer of the chroot" + echo "-I <pkg> Install a package into the rw layer of the chroot" exit 1 } -while getopts ':r:i:h:cu' arg; do +while getopts ':r:I:h:cu' arg; do case "${arg}" in r) chrootdir="$OPTARG" ;; - i) install_pkg="$OPTARG" ;; + I) install_pkg="$OPTARG" ;; u) update_first=1 ;; c) clean_first=1 ;; h|?) usage ;; |