Sfoglia il codice sorgente

Allow PREFIX to be set by user

This allows for the following command to work:

```
PREFIX=~/.local make install
```

The makefile already handles the `PREFIX` not being at `/usr/local`
pull/1016/head
Nicole Patricia Mazzuca 11 mesi fa
parent
commit
2565902819
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 861E11A9B3E5C2ED
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile Vedi File

@@ -1,6 +1,6 @@
.POSIX:

PREFIX = /usr/local
PREFIX ?= /usr/local
MANPREFIX = $(PREFIX)/share/man

install:


Caricamento…
Annulla
Salva