mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-09 23:19:44 +00:00
6 lines
138 B
Bash
6 lines
138 B
Bash
#!/bin/bash
|
|
|
|
chown -R root:root $LFS/{usr,lib,var,etc,bin,sbin,tools}
|
|
case $(uname -m) in
|
|
x86_64) chown -R root:root $LFS/lib64 ;;
|
|
esac
|