diff options
author | B. Watson <urchlay@slackware.uk> | 2023-05-16 01:31:42 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2023-05-16 05:11:44 -0400 |
commit | f7e86f43594280c6648a6e31f9884f3158dfce3a (patch) | |
tree | 7bcd5b28cabe59a70e9e27da597ae0ff35f650c1 /sbolint | |
parent | 6ba8438b6f9956a1fb901312b8d4601a77458d25 (diff) | |
download | sbo-maintainer-tools-f7e86f43594280c6648a6e31f9884f3158dfce3a.tar.gz |
sbolint: allow -march= in comments. sbodl: fix spacing.
Diffstat (limited to 'sbolint')
-rwxr-xr-x | sbolint | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1262,7 +1262,8 @@ sub check_script { } } elsif(/^PKG=(\S+)/) { $pkg = dequote($1); - if($pkg ne '$TMP/package-$PRGNAM') { + $pkg =~ s,\$\{([A-Z]+)\},\$$1,; # de-brace + if($pkg ne '$TMP/package-$PRGNAM' && $pkg ne '$TMP/package-${PRGNAM}') { log_error("$file:$lineno: PKG=\$TMP/package-\$PRGNAM is required"); } } elsif(/^OUTPUT=(\S+)/) { @@ -1333,7 +1334,7 @@ sub check_script { $old_arch = $lineno; } - if(/-march=['"]?i[34]86/) { + if(/^[^#]*\s-march=['"]?i[34]86/) { $old_flags = $lineno; } |