defs.mk: Fix absolute paths of sed, rm, pwd for Debian

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2017-12-27 17:39:22 +00:00
commit d15cf9797c

View file

@ -29,13 +29,13 @@ ifneq ($(wildcard pre-local.mk),)
endif endif
# ----- executables # ----- executables
SED := /usr/bin/sed SED := $(shell which sed)
CAT := /bin/cat CAT := /bin/cat
SHELL ?= /bin/bash SHELL ?= /bin/bash
BROWSER ?= firefox BROWSER ?= firefox
RM := /usr/bin/rm RM := $(shell which rm)
AR = /usr/bin/ar AR = /usr/bin/ar
PWD := /usr/bin/pwd PWD := $(shell which pwd)
BIN_INSTALL := /usr/bin/install BIN_INSTALL := /usr/bin/install
SUDO ?= /usr/bin/sudo SUDO ?= /usr/bin/sudo