diff options
author | Cem Keylan <cem@ckyln.com> | 2020-01-15 11:36:34 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-01-15 11:36:34 +0300 |
commit | 046796fc6a35b1e00e05d4f7c35a7cef6a6d824c (patch) | |
tree | 9334d95099eb864c8a76ffc9cb40fb01f43d9e48 | |
parent | be8402187af8fb21177e5c7175a14705dfdcec4e (diff) | |
download | repository-046796fc6a35b1e00e05d4f7c35a7cef6a6d824c.tar.gz |
kiss-utils: simpler build
-rwxr-xr-x | core/kiss-utils/build | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/core/kiss-utils/build b/core/kiss-utils/build index d59d22df..e75c5f92 100755 --- a/core/kiss-utils/build +++ b/core/kiss-utils/build @@ -1,7 +1,3 @@ #!/bin/sh -e -cd contrib - -for bin in *; do - install -D "$bin" "$1/usr/bin/$bin" -done +install -D contrib/* -t "$1/usr/bin" |