]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
build: Remove hostapd vs. wpa_supplicant build checks
authorJohannes Berg <johannes.berg@intel.com>
Fri, 18 Sep 2020 09:49:55 +0000 (11:49 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 10 Oct 2020 09:53:38 +0000 (12:53 +0300)
These are no longer needed now. Note that this was never actually
sufficient since src/drivers/ isn't the only thing shared, and thus a
cross-build detection didn't work in all cases.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
hostapd/Makefile
wpa_supplicant/Makefile

index f07acdf2447835a7c292697b0c6113c6bcf9e8cb..555e05f4a8965c906004527d84f72913cbc30022 100644 (file)
@@ -1264,18 +1264,10 @@ $(DESTDIR)$(BINDIR)/%: %
 
 install: $(addprefix $(DESTDIR)$(BINDIR)/,$(ALL))
 
-../src/drivers/build.hostapd:
-       @if [ -f ../src/drivers/build.wpa_supplicant ]; then \
-               $(MAKE) -C ../src/drivers clean; \
-       fi
-       @touch ../src/drivers/build.hostapd
-
-BCHECK=../src/drivers/build.hostapd
-
 _OBJS_VAR := OBJS
 include ../src/objs.mk
 
-hostapd: $(BCHECK) $(OBJS)
+hostapd: $(OBJS)
        $(Q)$(CC) $(LDFLAGS) -o hostapd $(OBJS) $(LIBS)
        @$(E) "  LD " $@
 
index c858f43b590967bfb38219edddfe88b6780dda66..9adadf141e6783410b4708236f7d185f3a3ec11f 100644 (file)
@@ -1852,14 +1852,6 @@ endif
 
 dynamic_eap_methods: $(EAPDYN)
 
-../src/drivers/build.wpa_supplicant:
-       @if [ -f ../src/drivers/build.hostapd ]; then \
-               $(MAKE) -C ../src/drivers clean; \
-       fi
-       @touch ../src/drivers/build.wpa_supplicant
-
-BCHECK=../src/drivers/build.wpa_supplicant
-
 _OBJS_VAR := OBJS_priv
 include ../src/objs.mk
 wpa_priv: $(BCHECK) $(OBJS_priv)