Module: kamailio Branch: master Commit: 747c3284c6eb31fab3b143c4217c84aa29fb9ca5 URL: https://github.com/kamailio/kamailio/commit/747c3284c6eb31fab3b143c4217c84aa...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2015-07-27T12:07:38+02:00
Makefile.defs: separate RUNBASEDIR from BASEDIR
- not sharing same purpose, a common value can still be forced via DESTDIR
---
Modified: Makefile.defs
---
Diff: https://github.com/kamailio/kamailio/commit/747c3284c6eb31fab3b143c4217c84aa... Patch: https://github.com/kamailio/kamailio/commit/747c3284c6eb31fab3b143c4217c84aa...
---
diff --git a/Makefile.defs b/Makefile.defs index fc3a578..ffcbc85 100644 --- a/Makefile.defs +++ b/Makefile.defs @@ -434,7 +434,8 @@ doxygen_dir=doc/doxygen
BASEDIR ?= $(DESTDIR) basedir = $(BASEDIR) -runbasedir = $(BASEDIR) +RUNBASEDIR ?= $(DESTDIR) +runbasedir = $(RUNBASEDIR)
# install location PREFIX ?= $(LOCALBASE)