btrfs-progs: install executables to /sbin instead of /bin.

This commit is contained in:
Tilman Sauerbeck 2010-07-13 22:45:49 +02:00
parent 29e56dc581
commit 052f1dd8cf
2 changed files with 10 additions and 10 deletions

View File

@ -1,12 +1,12 @@
drwxr-xr-x root/root bin/
-rwxr-xr-x root/root bin/btrfs
-rwxr-xr-x root/root bin/btrfs-debug-tree
-rwxr-xr-x root/root bin/btrfs-map-logical
-rwxr-xr-x root/root bin/btrfs-show
-rwxr-xr-x root/root bin/btrfs-vol
-rwxr-xr-x root/root bin/btrfsck
-rwxr-xr-x root/root bin/btrfsctl
-rwxr-xr-x root/root bin/mkfs.btrfs
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/btrfs
-rwxr-xr-x root/root sbin/btrfs-debug-tree
-rwxr-xr-x root/root sbin/btrfs-map-logical
-rwxr-xr-x root/root sbin/btrfs-show
-rwxr-xr-x root/root sbin/btrfs-vol
-rwxr-xr-x root/root sbin/btrfsck
-rwxr-xr-x root/root sbin/btrfsctl
-rwxr-xr-x root/root sbin/mkfs.btrfs
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/

View File

@ -14,5 +14,5 @@ build() {
make
install -d -m 755 $PKG/usr/man/man8
make prefix=/ mandir=/usr/man DESTDIR=$PKG install
make prefix=/ bindir=/sbin mandir=/usr/man DESTDIR=$PKG install
}