diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-06-08 18:43:42 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-06-08 18:43:42 +0900 |
| commit | b5445573a80548e146ae5132a74c2a20e375ad91 (patch) | |
| tree | 4e55197795b82f9c3fbc30739829fcd2ca632812 | |
| parent | f869ff95a12756de97827b4afd93763f9661f144 (diff) | |
internal/rosa/package/ninja: work around test suite bug
The test suite hard codes /bin/echo.
Signed-off-by: Ophestra <cat@gensokyo.uk>
| -rw-r--r-- | internal/rosa/package/ninja.az | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/rosa/package/ninja.az b/internal/rosa/package/ninja.az index 221e44da..d6a45493 100644 --- a/internal/rosa/package/ninja.az +++ b/internal/rosa/package/ninja.az @@ -24,7 +24,10 @@ python3 /usr/src/ninja/configure.py \ --gtest-source-dir=/usr/src/extra/googletest ./ninja ` + jobsFlagE + ` all`; - check = "\n./ninja_test"; + check = ` +chmod +w /bin/ +ln -s ../system/bin/echo /bin/ +./ninja_test`; install = ` mkdir -p /work/system/bin/ |
