| From 57b12a1e43605f71239a21488cb9b541f0751dda Mon Sep 17 00:00:00 2001 |
| From: Alex Kiernan <alexk@zuma.ai> |
| Date: Thu, 21 Apr 2022 10:15:29 +0100 |
| Subject: [PATCH] Install wpa_passphrase when not disabled |
| |
| As part of fixing CONFIG_NO_WPA_PASSPHRASE, whilst wpa_passphrase gets |
| built, its not installed during `make install`. |
| |
| Fixes: cb41c214b78d ("build: Re-enable options for libwpa_client.so and wpa_passphrase") |
| Signed-off-by: Alex Kiernan <alexk@zuma.ai> |
| Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> |
| Upstream-Status: Submitted [http://lists.infradead.org/pipermail/hostap/2022-April/040448.html] |
| --- |
| wpa_supplicant/Makefile | 3 +++ |
| 1 file changed, 3 insertions(+) |
| |
| diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile |
| index 0bab313f2355..12787c0c7d0f 100644 |
| --- a/wpa_supplicant/Makefile |
| +++ b/wpa_supplicant/Makefile |
| @@ -73,6 +73,9 @@ $(DESTDIR)$(BINDIR)/%: % |
| |
| install: $(addprefix $(DESTDIR)$(BINDIR)/,$(BINALL)) |
| $(MAKE) -C ../src install |
| +ifndef CONFIG_NO_WPA_PASSPHRASE |
| + install -D wpa_passphrase $(DESTDIR)/$(BINDIR)/wpa_passphrase |
| +endif |
| ifdef CONFIG_BUILD_WPA_CLIENT_SO |
| install -m 0644 -D libwpa_client.so $(DESTDIR)/$(LIBDIR)/libwpa_client.so |
| install -m 0644 -D ../src/common/wpa_ctrl.h $(DESTDIR)/$(INCDIR)/wpa_ctrl.h |
| -- |
| 2.35.1 |
| |