mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
syncfiles: terminate directory names at equal signs
In the case where the directory name should be removed (null pathname separator) don't search backwards past an equal sign, just in case there isn't a space after the assignment.
This commit is contained in:
parent
64ca4b6998
commit
c5d8030768
@ -18,7 +18,7 @@ sub do_transform($$) {
|
||||
|
||||
if ($ps eq '') {
|
||||
# Remove the path separator and the preceeding directory
|
||||
$l =~ s/\S*\x02//g;
|
||||
$l =~ s/[^\s\=]*\x02//g;
|
||||
} else {
|
||||
# Convert the path separator
|
||||
$l =~ s/\x02/$ps/g;
|
||||
|
Loading…
x
Reference in New Issue
Block a user