diff options
| author | Fuwn <[email protected]> | 2024-01-23 20:20:58 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-23 20:20:58 -0800 |
| commit | d40937611443302984c9ce4f2eb208bf25d72b55 (patch) | |
| tree | 243dab635bb4b8164dc75966cdd0142388491a5c | |
| parent | chore(ninja): clang tidy (diff) | |
| download | seiwm-d40937611443302984c9ce4f2eb208bf25d72b55.tar.xz seiwm-d40937611443302984c9ce4f2eb208bf25d72b55.zip | |
build(ninja): use CC from environment if available
| -rw-r--r-- | rules.ninja | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.ninja b/rules.ninja index 6db4d8b..a840299 100644 --- a/rules.ninja +++ b/rules.ninja @@ -39,5 +39,5 @@ LDFLAGS = ${LIBS} # LDFLAGS = ${LIBS} # Compiler -CC = cc +CC = $${CC:-cc} |