diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-15 21:16:22 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-15 21:16:22 +0300 |
commit | cb164386638ad61d38ce33e7bd5892c85aa6fced (patch) | |
tree | d339170529153e90076368c58365e45ceff9acb6 /extra/ntfs-3g | |
parent | e1640e1d26e143d140d954596dcd5befb1b769d4 (diff) | |
download | repository-cb164386638ad61d38ce33e7bd5892c85aa6fced.tar.gz |
ntfs-3g: nitpick
Diffstat (limited to 'extra/ntfs-3g')
-rwxr-xr-x | extra/ntfs-3g/build | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/extra/ntfs-3g/build b/extra/ntfs-3g/build index 77a53d3b..8088f998 100755 --- a/extra/ntfs-3g/build +++ b/extra/ntfs-3g/build @@ -7,9 +7,7 @@ make make DESTDIR="$1" install -install -Dm755 "$1/bin/"* -t "$1/usr/bin" -install -Dm755 "$1/sbin/"* -t "$1/usr/bin" +mkdir -p "$1/usr/bin" -# KISS will always assign a $1 value -# shellcheck disable=2115 -rm -r "$1/bin" "$1/sbin" +mv "$1/bin/"* "$1/sbin/"* "$1/usr/bin" +rmdir "$1/bin" "$1/sbin" |