Module: kamailio Branch: master Commit: 9da4b45f4e56962e202042600f51ba11e4606760 URL: https://github.com/kamailio/kamailio/commit/9da4b45f4e56962e202042600f51ba11...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2016-12-08T16:01:54+01:00
Makefile: root forwarding of target without enclosing in double quotes
---
Modified: Makefile
---
Diff: https://github.com/kamailio/kamailio/commit/9da4b45f4e56962e202042600f51ba11... Patch: https://github.com/kamailio/kamailio/commit/9da4b45f4e56962e202042600f51ba11...
---
diff --git a/Makefile b/Makefile index 1a4f4bd..05b9570 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ KSR_DIR ?= src/
# forward all named targets %: - $(MAKE) -C $(KSR_DIR) "$@" + $(MAKE) -C $(KSR_DIR) $@
# forward the default target default: @@ -19,4 +19,4 @@ default:
.PHONY: install install: - $(MAKE) -C $(KSR_DIR) "$@" + $(MAKE) -C $(KSR_DIR) $@