From 1bcf478b58b9abf63b4b1ae07c06379497a3c04a Mon Sep 17 00:00:00 2001 From: Dave Allured Date: Fri, 22 Nov 2024 19:22:53 -0700 Subject: [PATCH] Remove warning for "platforms darwin" * Warning is not necessary and creates unnecessary work. * Closes: https://trac.macports.org/ticket/70997 --- src/port1.0/portlint.tcl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/port1.0/portlint.tcl b/src/port1.0/portlint.tcl index 4eaf6bcdf8..feb12155fb 100644 --- a/src/port1.0/portlint.tcl +++ b/src/port1.0/portlint.tcl @@ -269,10 +269,6 @@ proc portlint::lint_platforms {platforms} { } } - if {$platforms eq "darwin"} { - lappend warnings "Unnecessary platforms line as darwin is the default" - } - return [list $errors $warnings] }