mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-22 06:00:40 +01:00
defs.mk: Fix absolute paths of sed, rm, pwd for Debian
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
57711ab58d
commit
d15cf9797c
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue