mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 03:53:32 +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
|
||||
|
||||
# ----- executables
|
||||
SED := /usr/bin/sed
|
||||
SED := $(shell which sed)
|
||||
CAT := /bin/cat
|
||||
SHELL ?= /bin/bash
|
||||
BROWSER ?= firefox
|
||||
RM := /usr/bin/rm
|
||||
RM := $(shell which rm)
|
||||
AR = /usr/bin/ar
|
||||
PWD := /usr/bin/pwd
|
||||
PWD := $(shell which pwd)
|
||||
BIN_INSTALL := /usr/bin/install
|
||||
SUDO ?= /usr/bin/sudo
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue