Skip to content
Snippets Groups Projects
Unverified Commit 4606fe89 authored by David Bauer's avatar David Bauer Committed by GitHub
Browse files

Merge pull request #3031 from blocktrron/fix-host-double-build

build: fix duplicate building of host-tools
parents be862997 6b22b742
No related branches found
No related tags found
No related merge requests found
...@@ -170,7 +170,8 @@ $(LUA): ...@@ -170,7 +170,8 @@ $(LUA):
scripts/module_check.sh scripts/module_check.sh
[ -e openwrt/.config ] || $(OPENWRTMAKE) defconfig $(GLUON_ENV) scripts/basic_openwrt_config.sh > openwrt/.config
$(OPENWRTMAKE) defconfig
$(OPENWRTMAKE) tools/install $(OPENWRTMAKE) tools/install
$(OPENWRTMAKE) package/lua/host/compile $(OPENWRTMAKE) package/lua/host/compile
......
#!/usr/bin/env bash
set -euo pipefail
echo "CONFIG_DEVEL=y"
if [ "$GLUON_AUTOREMOVE" != "0" ]; then
echo "CONFIG_AUTOREMOVE=y"
else
echo "# CONFIG_AUTOREMOVE is not set"
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment