diff options
author | misson20000 | 2018-12-18 14:33:31 -0800 |
---|---|---|
committer | misson20000 | 2018-12-18 14:33:31 -0800 |
commit | a9b35f08e1095d4f345c7b60a15656a1cd6ee445 (patch) | |
tree | 6062e4d666d7106f40bcf33b6cc3d450d7bf52e6 | |
parent | 66848b5695301610a97dafad53dff958eaae3440 (diff) | |
download | aur-a9b35f08e1095d4f345c7b60a15656a1cd6ee445.tar.gz |
package(): use install instead of cp
-rw-r--r-- | PKGBUILD | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -25,7 +25,5 @@ build() { } package() { - cd "$srcdir/hactool" - mkdir -p "$pkgdir/usr/bin/" - cp "hactool" "$pkgdir/usr/bin" + install -D -t "$pkgdir/usr/bin" "$srcdir/hactool/hactool" } |