diff options
| author | ruki <[email protected]> | 2025-11-11 00:45:21 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-11-11 00:45:21 +0800 |
| commit | 45378e830b8cef12393a357792b31a39370a1ea9 (patch) | |
| tree | e3404746537120281565b7b6c4501b412f3b278b | |
| parent | 72f441c0a6f0ac864e7b4b0c06e8523434e4b599 (diff) | |
remove deps when packaging #7001
| -rw-r--r-- | xmake/actions/package/local/main.lua | 1 | ||||
| -rw-r--r-- | xmake/actions/package/remote/main.lua | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/xmake/actions/package/local/main.lua b/xmake/actions/package/local/main.lua index 8470bede0..408b9ad76 100644 --- a/xmake/actions/package/local/main.lua +++ b/xmake/actions/package/local/main.lua @@ -232,7 +232,6 @@ function main() -- package the given target? if targetname then local target = assert(check_targetname(targetname)) - _package_targets(target:orderdeps()) _package_target(target) else -- package default or all targets diff --git a/xmake/actions/package/remote/main.lua b/xmake/actions/package/remote/main.lua index 63adab7be..45746eb69 100644 --- a/xmake/actions/package/remote/main.lua +++ b/xmake/actions/package/remote/main.lua @@ -155,7 +155,6 @@ function main() local targetname = option.get("target") if targetname then local target = assert(check_targetname(targetname)) - _package_targets(target:orderdeps()) _package_target(target) else -- package default or all targets |
