浏览代码

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 ?= @


正在加载...
取消
保存