summaryrefslogtreecommitdiffstats
path: root/config/define-if.sh
diff options
context:
space:
mode:
Diffstat (limited to 'config/define-if.sh')
-rwxr-xr-xconfig/define-if.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/config/define-if.sh b/config/define-if.sh
deleted file mode 100755
index 059c1ac..0000000
--- a/config/define-if.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-# Copyright © Tavian Barnes <tavianator@tavianator.com>
-# SPDX-License-Identifier: 0BSD
-
-# Output a C preprocessor definition based on whether a command succeeds
-
-set -eu
-
-SLUG="${1#config/}"
-SLUG="${SLUG%.c}"
-MACRO="BFS_$(printf '%s' "$SLUG" | tr '/a-z-' '_A-Z_')"
-shift
-
-if "$@"; then
- printf '#define %s true\n' "$MACRO"
-else
- printf '#define %s false\n' "$MACRO"
- exit 1
-fi