소스 검색

Makefiles: Do not override PREFIX or DESTDIR from the environment

These are not set in normal shell sessions.  Honouring existing
settings allows the caller of ./build to specify alternative values.

Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
pull/62/head
Ian Jackson 9 년 전
부모
커밋
508d6b31bd
3개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. +2
    -2
      devLib/Makefile
  2. +2
    -2
      gpio/Makefile
  3. +2
    -2
      wiringPi/Makefile

+ 2
- 2
devLib/Makefile 파일 보기

@@ -22,8 +22,8 @@
#################################################################################

VERSION=$(shell cat ../VERSION)
DESTDIR=/usr
PREFIX=/local
DESTDIR?=/usr
PREFIX?=/local

ifneq ($V,1)
Q ?= @


+ 2
- 2
gpio/Makefile 파일 보기

@@ -23,8 +23,8 @@
# along with wiringPi. If not, see <http://www.gnu.org/licenses/>.
#################################################################################

DESTDIR=/usr
PREFIX=/local
DESTDIR?=/usr
PREFIX?=/local

ifneq ($V,1)
Q ?= @


+ 2
- 2
wiringPi/Makefile 파일 보기

@@ -22,8 +22,8 @@
#################################################################################

VERSION=$(shell cat ../VERSION)
DESTDIR=/usr
PREFIX=/local
DESTDIR?=/usr
PREFIX?=/local

ifneq ($V,1)
Q ?= @


불러오는 중...
취소
저장