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:
parent
5a4ae6e3ad
commit
95bf9fc93d
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue