mirror of
https://github.com/oasislinux/oasis.git
synced 2026-02-05 11:33:57 +01:00
Since we are now using Lua to generate ninja files, use of rc in build scripts seems unnecessary and adds an additional bootstrap dependency. None of them are too fancy, so just port to POSIX sh instead.
9 lines
137 B
Bash
Executable File
9 lines
137 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
../src/configure >/dev/null
|
|
awk '{print $2}' config.asm >vars.txt
|
|
make -f sources.mk >../sources.txt
|
|
git clean -df .
|