diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-08-03 13:06:38 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-08-03 13:06:38 +0000 |
commit | b1f792b023635e2a957e1b644fcd0d70c19db339 (patch) | |
tree | 76a0d2b0d93f3b6a296fa67c11c19d5b3430e5ba | |
parent | cc4f11e002adf0318ed31b1dd68dfd96e0677007 (diff) | |
download | abuild-b1f792b023635e2a957e1b644fcd0d70c19db339.tar.gz abuild-b1f792b023635e2a957e1b644fcd0d70c19db339.tar.bz2 abuild-b1f792b023635e2a957e1b644fcd0d70c19db339.tar.xz abuild-b1f792b023635e2a957e1b644fcd0d70c19db339.zip |
abuild: implement -d for disable dependency checking
This is needed when bootstrapping the system.
-rwxr-xr-x | abuild.in | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -705,6 +705,7 @@ deptrace() { # build and install dependencies builddeps() { local deps alldeps pkg i dir ver missing installed_deps + [ -n "$nodeps" ] && return 0 msg "Analyzing dependencies..." deps="$BUILD_BASE $makedepends" @@ -914,6 +915,7 @@ usage() { echo " [-s SRCDEST] [cmd] ..." echo " ${0##*/} [-c] -n PKGNAME[-PKGVER]" echo "Options:" + echo " -d Disable dependency checking" echo " -f Force specified cmd, even if they are already done" echo " -h Show this help" echo " -i Install PKG after successul build" @@ -954,9 +956,10 @@ usage() { APKBUILD="${APKBUILD:-./APKBUILD}" unset force unset recursive -while getopts "cfhi:kin:p:P:qrRs:u" opt; do +while getopts "cdfhi:kin:p:P:qrRs:u" opt; do case $opt in 'c') cpinitd=1;; + 'd') nodeps=1;; 'f') force=1;; 'h') usage;; 'i') install_after="$install_after $OPTARG";; |