summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2025-09-08 12:06:30 -0400
committerAndrew Opalach <andrew@akon.city> 2025-09-08 12:06:30 -0400
commited6fc176a1ef6afd43eaa198c43eb813c3a81d99 (patch)
tree9ffa752b3780c6c5a73b88ab9cace15846b792c1 /scripts
parenta36cb2f6f9df8e501baf614f8aca9b4bd28e4268 (diff)
downloadlibalabaster-ed6fc176a1ef6afd43eaa198c43eb813c3a81d99.tar.gz
libalabaster-ed6fc176a1ef6afd43eaa198c43eb813c3a81d99.tar.bz2
libalabaster-ed6fc176a1ef6afd43eaa198c43eb813c3a81d99.zip
build: Option for asserts in release builds
- Define NDEBUG in release builds. - loccount -> sloccount. Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/line_count.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/line_count.sh b/scripts/line_count.sh
index 6af0fe0..a6ac787 100755
--- a/scripts/line_count.sh
+++ b/scripts/line_count.sh
@@ -1,3 +1,3 @@
#! /usr/bin/env sh
export LC_ALL="C"
-find ./src ./include -type f -exec loccount {} +
+find ./src ./include -type f -exec sloccount {} +