summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2023-03-16 00:50:10 +0800
committerruki <[email protected]>2023-03-16 00:50:10 +0800
commit056d8cd83589f84254c0a4c9fdd4d84c06eddc96 (patch)
treebcfff34e081412197a2e1dec758643df5e4547bb
parentaa1adec68c504d39889f4d98729354369aae4961 (diff)
use 1 for XMAKE_IN_XREPO
-rw-r--r--xmake/modules/package/tools/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/package/tools/xmake.lua b/xmake/modules/package/tools/xmake.lua
index 0743ac409..8788ed6f8 100644
--- a/xmake/modules/package/tools/xmake.lua
+++ b/xmake/modules/package/tools/xmake.lua
@@ -241,7 +241,7 @@ function buildenvs(package, opt)
local envs = _get_package_toolchains_envs(package, opt)
-- we should avoid using $XMAKE_CONFIGDIR outside to cause conflicts
envs.XMAKE_CONFIGDIR = os.curdir()
- envs.XMAKE_IN_XREPO = "true"
+ envs.XMAKE_IN_XREPO = "1"
return envs
end