We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3edf630 commit c7f63bfCopy full SHA for c7f63bf
plugins/envsetup
@@ -288,7 +288,11 @@ do_build() {
288
chroot_dir=$target_dir
289
290
if [[ ! $DEBOOTSTRAP_DIR ]]; then
291
- if [ "$BUILD_PLATFORM" != "termux" ]; then
+ if [ "$BUILD_PLATFORM" == "termux" ]; then
292
+ # use default debootstrap directory in termux
293
+ export DEBOOTSTRAP_DIR="$PREFIX/share/debootstrap"
294
+ else
295
+ # use custom debootstrap directory in linux
296
export DEBOOTSTRAP_DIR="$ROOT_DIR/core/debootstrap-scripts"
297
fi
298
0 commit comments