From: Andrej Shadura Date: Thu, 21 Oct 2021 10:00:03 +0000 (+0200) Subject: Remove extra slash from BIN/INC/LIBDIR defaults X-Git-Tag: hostap_2_10~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95bf9fc93de166c70e3e945cd80535b2a8578271;p=thirdparty%2Fhostap.git Remove extra slash from BIN/INC/LIBDIR defaults Every usage of these variables appends an extra slash, so keeping a slash in the default values leads to double slashes in resulting paths. Signed-off-by: Andrej Shadura --- diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index 271f2aab3..fa707dc41 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -30,9 +30,9 @@ LIBS_p := $(LIBS) endif endif -export LIBDIR ?= /usr/local/lib/ -export INCDIR ?= /usr/local/include/ -export BINDIR ?= /usr/local/sbin/ +export LIBDIR ?= /usr/local/lib +export INCDIR ?= /usr/local/include +export BINDIR ?= /usr/local/sbin PKG_CONFIG ?= pkg-config CFLAGS += $(EXTRA_CFLAGS)