]> Zhao Yanbai Git Server - minix.git/commitdiff
fix for ~root being / and buggering up system with chroot -R
authorBen Gras <ben@minix3.org>
Tue, 7 Jun 2005 13:33:57 +0000 (13:33 +0000)
committerBen Gras <ben@minix3.org>
Tue, 7 Jun 2005 13:33:57 +0000 (13:33 +0000)
etc/Makefile

index 1f0edb7bf053b4059862b322e9ac1d8472f42872..be974432f03203708414fe17eb5aa077be018813 100644 (file)
@@ -20,4 +20,5 @@ install::
        @echo "Making devices.."
        cd /dev && sh /usr/src/commands/scripts/MAKEDEV.sh std 2>/dev/null
        @echo "Making user homedirs.."
-       for u in bin ast root; do (cd ast && tar cf - .[a-z]* ) | (cd ~$$u && tar xf - ); chown -R $$u ~$$u; done
+       for u in bin ast; do (cd ast && tar cf - .[a-z]* ) | (cd ~$$u && tar xf - ); chown -R $$u ~$$u; done
+       (cd ast && tar cf - .[a-z]* ) | (cd ~root && tar xf - )