mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 03:57:44 +00:00
return prefix var
This commit is contained in:
parent
23ca60ecd2
commit
0bb971b918
1 changed files with 4 additions and 3 deletions
7
Makefile
7
Makefile
|
@ -18,12 +18,13 @@ CARGO ?= cargo
|
|||
CARGOFLAGS ?=
|
||||
|
||||
# Install directories
|
||||
DESTDIR ?= /usr/local
|
||||
PREFIX ?= /usr/local
|
||||
DESTDIR ?=
|
||||
BINDIR ?= /bin
|
||||
LIBDIR ?= /lib
|
||||
|
||||
INSTALLDIR_BIN=$(DESTDIR)$(BINDIR)
|
||||
INSTALLDIR_LIB=$(DESTDIR)$(LIBDIR)
|
||||
INSTALLDIR_BIN=$(DESTDIR)$(PREFIX)$(BINDIR)
|
||||
INSTALLDIR_LIB=$(DESTDIR)$(PREFIX)$(LIBDIR)
|
||||
|
||||
#prefix to apply to uutils binary and all tool binaries
|
||||
PROG_PREFIX ?=
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue