fix symlink creation
This commit is contained in:
parent
0ad9e29e5e
commit
a6fa1e0833
1 changed files with 2 additions and 1 deletions
3
Makefile
3
Makefile
|
@ -36,7 +36,8 @@ luahost: luabuild hostcopy
|
||||||
hostcopy:
|
hostcopy:
|
||||||
mkdir -p host
|
mkdir -p host
|
||||||
for i in $(MODULES); do cp $$i/dist/* host/ -R 2>/dev/null || true; done
|
for i in $(MODULES); do cp $$i/dist/* host/ -R 2>/dev/null || true; done
|
||||||
ln -sf .$(LUCI_INSTALLDIR) host/luci
|
rm -f host/luci
|
||||||
|
ln -s .$(LUCI_INSTALLDIR) host/luci
|
||||||
|
|
||||||
run: host
|
run: host
|
||||||
./host/usr/bin/boa -c ./host/etc/boa -d
|
./host/usr/bin/boa -c ./host/etc/boa -d
|
||||||
|
|
Loading…
Reference in a new issue