remove leading/tailing "/" from installation RELPATHs

This commit is contained in:
Philippe Teuwen 2019-09-05 23:20:46 +02:00
commit 9cf2cd7ca9
8 changed files with 45 additions and 47 deletions

View file

@ -26,13 +26,13 @@ CXX = g++
LD = g++
PATHSEP=/
PREFIX ?= /usr/local
UDEV_PREFIX ?= /etc/udev/rules.d
INSTALLBINRELPATH ?= /bin/
INSTALLSHARERELPATH ?= /share/proxmark3/
INSTALLFWRELPATH ?= /share/proxmark3/firmware/
INSTALLTOOLSRELPATH ?= /share/proxmark3/tools/
INSTALLDOCSRELPATH ?= /share/doc/proxmark3/
PREFIX ?= /usr/local
UDEV_PREFIX ?= /etc/udev/rules.d
INSTALLBINRELPATH ?= bin
INSTALLSHARERELPATH ?= share/proxmark3
INSTALLFWRELPATH ?= share/proxmark3/firmware
INSTALLTOOLSRELPATH ?= share/proxmark3/tools
INSTALLDOCSRELPATH ?= share/doc/proxmark3
platform = $(shell uname)
DETECTED_OS=$(platform)