diff options
author | Violet Purcell <vimproved@inventati.org> | 2023-11-22 18:35:01 -0500 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2023-11-24 20:52:47 -0800 |
commit | acf5e9c1d505e14524dcc78a1433872ae273c491 (patch) | |
tree | 703f3f6c03271b266cca7b7095a42222f7a13048 | |
parent | Makefile.inc: prepare for 0.7.7 (diff) | |
download | netifrc-acf5e9c1d505e14524dcc78a1433872ae273c491.tar.gz netifrc-acf5e9c1d505e14524dcc78a1433872ae273c491.tar.bz2 netifrc-acf5e9c1d505e14524dcc78a1433872ae273c491.zip |
iwd: depend on "program /usr/libexec/iwd" instead of "program iwd"
In iwd.sh, the iwd executable used is /usr/libexec/iwd, however in the
dependency block it depends on just "program iwd." Since iwd is not in
PATH, this will fail and cause iwd to not be started when it should be.
Correct this to /usr/libexec/iwd.
Signed-off-by: Violet Purcell <vimproved@inventati.org>
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Closes: https://github.com/gentoo/netifrc/pull/49
-rw-r--r-- | net/iwd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ iwd_depend() before interface provide wireless after iwconfig - program iwd + program /usr/libexec/iwd } _config_vars="$_config_vars iwd" |