aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsewn <sewn@disroot.org>2026-02-28 03:45:32 +0300
committersewn <sewn@disroot.org>2026-02-28 03:45:36 +0300
commit007bffe15419f51ef226467649376e7dcbd5d6d0 (patch)
tree5bf5394f8438e03c8089bc568bdc07669fcce71f
parentc30c879ed3db8b733c3841ae6c1d364fd366ad8e (diff)
config.h.in: fix accidental double quoting
Removes the extraneous quote that breaks building with LLVM.
-rw-r--r--config.h.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.h.in b/config.h.in
index ae75fd6..f81ba94 100644
--- a/config.h.in
+++ b/config.h.in
@@ -139,7 +139,7 @@
//
// Make information about the build available.
//
-#define CC_DATE "${CFG_DATE:-"$(date '+%Y-%m-%d %H:%M')"}"
+#define CC_DATE "${CFG_DATE:-$(date '+%Y-%m-%d %H:%M')}"
#define CC_BRANCH "$(git rev-parse --abbrev-ref HEAD 2>/dev/null || echo n/a)"
#define CC_COMMIT "$(git rev-parse HEAD 2>/dev/null || echo n/a)"
#define CFG_VERSION "$CFG_VERSION"