diff options
| author | ruki <[email protected]> | 2026-01-24 21:07:24 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-01-24 21:07:24 +0800 |
| commit | 4d40ef4dc24a62b0995bd7d13dab7d4fcad98f46 (patch) | |
| tree | 986a98ae3aedbf25a554ea2593f0d195b44aa34e /xmake/modules/core/tools/fpc.lua | |
| parent | df870ffd7cf1b7c4cb5df311f437ffef03678178 (diff) | |
fix fpc
Diffstat (limited to 'xmake/modules/core/tools/fpc.lua')
| -rw-r--r-- | xmake/modules/core/tools/fpc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/core/tools/fpc.lua b/xmake/modules/core/tools/fpc.lua index f207061dc..c08fcef14 100644 --- a/xmake/modules/core/tools/fpc.lua +++ b/xmake/modules/core/tools/fpc.lua @@ -151,7 +151,7 @@ function buildargv(self, sourcefiles, targetkind, targetfile, flags, opt) end -- build the target file -function build(self, sourcefiles, targetkind, targetfile, flags) +function build(self, sourcefiles, targetkind, targetfile, flags, opt) os.mkdir(path.directory(targetfile)) - os.runv(buildargv(self, sourcefiles, targetkind, targetfile, flags)) + os.runv(buildargv(self, sourcefiles, targetkind, targetfile, flags, opt)) end |
