diff options
-rw-r--r-- | packaging/mic-bootstrap.spec | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packaging/mic-bootstrap.spec b/packaging/mic-bootstrap.spec index 801b2d7..bb0f167 100644 --- a/packaging/mic-bootstrap.spec +++ b/packaging/mic-bootstrap.spec @@ -74,6 +74,9 @@ sed -f $sedtmp -i filestoinclude1 # tar copy to bootstrap dir under buildroot # prefix /bootstrap will fix conflicts tar -T filestoinclude1 -cpf - | ( cd %buildroot/bootstrap && tar -xpf - ) +# tar copy /usr/bin and /usr/sbin to /bin and /sbin to fix symblic lost in tar +(cd /usr/bin && tar -cpf - *) | (cd %buildroot/bootstrap/bin && tar -xpf -) +(cd /usr/sbin && tar -cpf - *) | (cd %buildroot/bootstrap/sbin && tar -xpf -) rm filestoinclude1 # Todo: refractor |