mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-01-24 23:32:18 +08:00
Add files via upload
This commit is contained in:
parent
3aab982ac9
commit
76264b899b
37
docs/build-temp-system/findutils.md
Normal file
37
docs/build-temp-system/findutils.md
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<package-info :package="package" showsbu></package-info>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
new Vue({
|
||||||
|
el: '#main',
|
||||||
|
data: { package: {} },
|
||||||
|
mounted: function () {
|
||||||
|
this.getPackage('m4');
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getPackage: function(name) {
|
||||||
|
getPackage(name)
|
||||||
|
.then(response => this.package = response);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
## Настройка
|
||||||
|
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./configure --prefix=/usr --host=$LIN_TGT --disable-nls
|
||||||
|
```
|
||||||
|
|
||||||
|
## Сборка
|
||||||
|
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make
|
||||||
|
```
|
||||||
|
|
||||||
|
## Установка
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make DESTDIR=$LIN install
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user