diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-03-01 13:19:12 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-03-01 13:19:12 +0100 |
commit | f2ea9e8dbd4cc3c77ff4cc52688d7057d3289fab (patch) | |
tree | 72ec81acffa69f2c89e52a38603a6f92fb1e72ae /scripts | |
parent | dce7d2df8c73896aeef77118fe89fc7e88d035fe (diff) | |
parent | 0943b7422376747a452bda5562c73d673cccbe68 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/scripts/install b/scripts/install index 0fe925d0f..174d27d5a 100755 --- a/scripts/install +++ b/scripts/install @@ -2,9 +2,26 @@ # This file is part of the OpenADK project. OpenADK is copyrighted # material, please see the LICENCE file in the top-level directory. +# eliminate unwanted install flags: +# -o and -g require root as caller which we don't want +# -s is unwanted as we strip ourselfs if debugging is turned off +declare -a opts +while [[ "$1" ]]; do + case "$1" in + -o|--owner) shift ;; + -g|--group) shift ;; + -s|--strip) ;; + *) opts+=("$1") ;; + esac + shift +done + +# prefer ginstall if available if [ -z "$(which ginstall 2>/dev/null)" ];then - /usr/bin/install "$@" + install=/usr/bin/install else - ginstall "$@" + install=ginstall fi +# do the actual call +exec $install "${opts[@]}" |