diff options
author | Imran Khan <gururug@gmail.com> | 2020-12-23 02:16:15 +1100 |
---|---|---|
committer | Imran Khan <gururug@gmail.com> | 2020-12-23 02:21:09 +1100 |
commit | f88485f572ec1ff9082106ccf0ccb20fc7af5801 (patch) | |
tree | 281c787ab221fde215a7cf6bce4789b4897ac27d /net/nft-qos/files | |
parent | b212b108ced1e36b2bedae04a0ff413ff08f4564 (diff) |
nft-qos: silence buildsystem errors
add IPKG_INSTROOT to init script to
silence build system errors
Signed-off-by: Imran Khan <gururug@gmail.com>
Diffstat (limited to 'net/nft-qos/files')
-rwxr-xr-x | net/nft-qos/files/nft-qos.init | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/nft-qos/files/nft-qos.init b/net/nft-qos/files/nft-qos.init index dcd487fa5..6c5842a49 100755 --- a/net/nft-qos/files/nft-qos.init +++ b/net/nft-qos/files/nft-qos.init @@ -3,12 +3,12 @@ # Copyright (C) 2018 rosysong@rosinson.com # -. /lib/nft-qos/core.sh -. /lib/nft-qos/monitor.sh -. /lib/nft-qos/dynamic.sh -. /lib/nft-qos/static.sh -. /lib/nft-qos/mac.sh -. /lib/nft-qos/priority.sh +. "${IPKG_INSTROOT}/lib/nft-qos/core.sh" +. "${IPKG_INSTROOT}/lib/nft-qos/monitor.sh" +. "${IPKG_INSTROOT}/lib/nft-qos/dynamic.sh" +. "${IPKG_INSTROOT}/lib/nft-qos/static.sh" +. "${IPKG_INSTROOT}/lib/nft-qos/mac.sh" +. "${IPKG_INSTROOT}/lib/nft-qos/priority.sh" START=99 USE_PROCD=1 |