Makefile: the workaround shouldn't break after a bugfix
This commit is contained in:
parent
6de42a6341
commit
7b7dc6fed4
2
Makefile
2
Makefile
|
@ -364,7 +364,7 @@ libnfuzz.a: | build deps
|
|||
echo -e $(BUILD_MSG) "build/$@" && \
|
||||
rm -f build/$@ && \
|
||||
$(ENV_SCRIPT) nim c -d:release --app:staticlib --noMain --nimcache:nimcache/libnfuzz_static -o:build/$@ $(NIM_PARAMS) nfuzz/libnfuzz.nim && \
|
||||
[[ -e "$@" ]] && mv "$@" build/ # workaround for https://github.com/nim-lang/Nim/issues/12745
|
||||
[[ -e "$@" ]] && mv "$@" build/ || true # workaround for https://github.com/nim-lang/Nim/issues/12745
|
||||
|
||||
book:
|
||||
cd docs/the_nimbus_book && \
|
||||
|
|
Loading…
Reference in New Issue