]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Remove extra slash from BIN/INC/LIBDIR defaults
authorAndrej Shadura <andrew.shadura@collabora.co.uk>
Thu, 21 Oct 2021 10:00:03 +0000 (12:00 +0200)
committerJouni Malinen <j@w1.fi>
Fri, 22 Oct 2021 13:58:10 +0000 (16:58 +0300)
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 <andrew.shadura@collabora.co.uk>
wpa_supplicant/Makefile

index 271f2aab31180daaf625af7243c0d448e452cbfb..fa707dc41e7b50d49dc0ffbc9c28ef28b7f8cc9e 100644 (file)
@@ -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)