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 <andrew.shadura@collabora.co.uk>
This commit is contained in:
Andrej Shadura 2021-10-21 12:00:03 +02:00 committed by Jouni Malinen
parent 5a4ae6e3ad
commit 95bf9fc93d

View file

@ -30,9 +30,9 @@ LIBS_p := $(LIBS)
endif endif
endif endif
export LIBDIR ?= /usr/local/lib/ export LIBDIR ?= /usr/local/lib
export INCDIR ?= /usr/local/include/ export INCDIR ?= /usr/local/include
export BINDIR ?= /usr/local/sbin/ export BINDIR ?= /usr/local/sbin
PKG_CONFIG ?= pkg-config PKG_CONFIG ?= pkg-config
CFLAGS += $(EXTRA_CFLAGS) CFLAGS += $(EXTRA_CFLAGS)