diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-19 18:29:44 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-19 18:29:44 (EDT) |
commit | c752393c58c37dc7e8403b8b87d0943c1fe8c8b9 (patch) | |
tree | 714e9f20512efeb85a85c46eab7be44ab8db9457 /src/install.sh | |
parent | c7a130bed358b95f88209a37b50eead355e9c0c8 (diff) |
install_find_pkgs(): Use profile_opkg_conf_file()
Diffstat (limited to 'src/install.sh')
-rw-r--r-- | src/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/install.sh b/src/install.sh index ecd312e..ca1afaf 100644 --- a/src/install.sh +++ b/src/install.sh @@ -126,7 +126,7 @@ install_find_pkgs() local pkgs= mkdir -p "${root}/etc/opkg" "${root}/$(profile_opkg_state_dir)/lists" - if ! fopen "${root}/etc/opkg/opkg.conf" 'w'; then + if ! fopen "${root}/$(profile_opkg_conf_file)" 'w'; then return 1 fi opkg_conf_fd=${FD} |