From 95bf9fc93de166c70e3e945cd80535b2a8578271 Mon Sep 17 00:00:00 2001 From: Andrej Shadura Date: Thu, 21 Oct 2021 12:00:03 +0200 Subject: [PATCH] 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 --- wpa_supplicant/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)