Skip to content

Commit 7e6a74a

Browse files
authored
Merge pull request #32 from jwillemsen/jwi-mktemp
Parse mktemp warnings again as warning
2 parents 585b0b3 + ee62aab commit 7e6a74a

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

common/parse_compiler_output.pm

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,6 @@ sub handle_compiler_output_line($) {
155155
return;
156156
}
157157

158-
if ($s =~ m/is dangerous, better use/) {
159-
# Linux has this annoying mktemp, mkstemp stuff. Ignore that
160-
# for the timebeing
161-
$self->Output_Normal ($s);
162-
return;
163-
}
164-
165158
if ($s =~ m/possibly used unsafely, use/) {
166159
# Similar warnings on NetBSD
167160
$self->Output_Normal ($s);

make_pretty.pl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,6 @@ ()
235235
# have the word 'error' in the symbol name - ignore those.
236236
return 0 if (m/^ld: \d+\-\d+ WARNING: Duplicate symbol:/);
237237
238-
# Linux has this annoying mktemp, mkstemp stuff. Ignore that
239-
# for the timebeing
240-
return 0 if (/is dangerous, better use/);
241-
242238
# Look for lines that also should be color coded, but not counted
243239
# as errors.
244240
return 2 if (/Types pointed to are unrelated/

0 commit comments

Comments
 (0)