Skip to content

Commit b749be2

Browse files
committed
fix defines in make.pas
1 parent 56d0129 commit b749be2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/make.pas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626

2727
// Package path filter — skip platform-incompatible and template packages
2828
PackageExcludePattern =
29-
{$IFDEF MSWINDOWS}
29+
{$IF DEFINED(MSWINDOWS)}
3030
'(cocoa|x11|_template)'
3131
{$ELSEIF DEFINED(DARWIN)}
3232
'(gdi|x11|_template)'
3333
{$ELSE}
3434
'(cocoa|gdi|_template)'
35-
{$ENDIF}
35+
{$IFEND}
3636
;
3737

3838
OPMBaseUrl = 'https://packages.lazarus-ide.org/';

0 commit comments

Comments
 (0)