From: Gustavo Zacarias Date: Thu, 28 Nov 2013 17:39:00 +0000 (-0300) Subject: wpa_supplicant: define BINDIR for systemd/dbus service files X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=689f975e7b196bf7ad2a3cd970444414f2f689d0;p=buildroot.git wpa_supplicant: define BINDIR for systemd/dbus service files BINDIR is used to point systemd/dbus service files to the correct binary path where wpa_supplicant resides. So define it to avoid the default /usr/local path that doesn't work. Solves bug #6704 Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/package/wpa_supplicant/wpa_supplicant.mk b/package/wpa_supplicant/wpa_supplicant.mk index 450e10f540..4ae41c10f7 100644 --- a/package/wpa_supplicant/wpa_supplicant.mk +++ b/package/wpa_supplicant/wpa_supplicant.mk @@ -137,7 +137,7 @@ endef define WPA_SUPPLICANT_BUILD_CMDS $(TARGET_MAKE_ENV) CFLAGS="$(WPA_SUPPLICANT_CFLAGS)" \ - LDFLAGS="$(TARGET_LDFLAGS)" \ + LDFLAGS="$(TARGET_LDFLAGS)" BINDIR=/usr/sbin \ $(MAKE) CC="$(TARGET_CC)" -C $(@D)/$(WPA_SUPPLICANT_SUBDIR) endef