Quellcode durchsuchen

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 vor 11 Monaten
Ursprung
Commit
2565902819
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden GPG-Schlüssel-ID: 861E11A9B3E5C2ED
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile Datei anzeigen

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

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

install:


Laden…
Abbrechen
Speichern