forked from josch/mmdebstrap
10 lines
122 B
Bash
Executable file
10 lines
122 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -exu
|
|
|
|
rootdir="$1"
|
|
|
|
for d in bin sbin lib; do
|
|
ln -s usr/$d "$rootdir/$d"
|
|
mkdir -p "$rootdir/usr/$d"
|
|
done
|