소스 검색

Better Support for Overriding Install Prefix

By not always appending "/usr" to the path, it enables install into /usr/local
and better integration with tools like stow.
Matthew Andersen 6 년 전
부모
커밋
a1a4c52a5d
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3
    1
      Makefile

+ 3
- 1
Makefile 파일 보기

@@ -1,4 +1,6 @@
1
-PREFIX=$(DESTDIR)/usr
1
+ifeq ($(PREFIX),)
2
+	PREFIX := /usr
3
+endif
2 4
 BINDIR=$(PREFIX)/bin
3 5
 MANDIR=$(PREFIX)/share/man/man1
4 6