diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-08-01 15:19:23 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-08-01 15:19:23 +0200 |
commit | 32c0cdc3aab19b90cab5660ed883190a70f86ce6 (patch) | |
tree | 447ec7c023604777cae4eecca57dfc6d41e79972 | |
parent | 8ea87cbaf6a1873b77c5ce4e4104e8dd7c7a0211 (diff) |
add install wrapper to avoid -o/-g usage
-rwxr-xr-x | scripts/install | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/install b/scripts/install new file mode 100755 index 000000000..546fc583b --- /dev/null +++ b/scripts/install @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. +set -x + +cmd=$(echo "$@"|sed -e "s#\(-o\|-g\) [0-9]*##g") +/usr/bin/install $cmd |