correct syntax errors in core scripts

This commit is contained in:
2026-02-15 22:23:04 -06:00
parent 913ec9afb1
commit 8f92870141
12 changed files with 93 additions and 56 deletions

View File

@@ -140,6 +140,7 @@ var commit_str = null
var line = null
var cflags = null
var ldflags = null
var _show_flags = null
for (i = 0; i < length(sorted); i++) {
locator = sorted[i].locator
@@ -199,7 +200,7 @@ for (i = 0; i < length(sorted); i++) {
// Show compilation inputs if requested (verbose)
if (depth == 0) {
var _show_flags = function() {
_show_flags = function() {
cflags = pkg.get_flags(locator, 'CFLAGS', target_triple)
ldflags = pkg.get_flags(locator, 'LDFLAGS', target_triple)
if (length(cflags) > 0 || length(ldflags) > 0) {