Skip to content
Snippets Groups Projects
Commit 90d05908 authored by Simon Rose's avatar Simon Rose
Browse files

Fix issue for older versions of make

Apparently make 3.81 treats the following
```
define foo =
bar
baz
endef
```
differently than make 4.2.1 (most notably, the equals sign).
parent 1c8a4f30
No related branches found
No related tags found
1 merge request!201E3-1722: Add support for mac os
# Keep always the module up-to-date # Keep always the module up-to-date
define git_update = define git_update
rm -rf $(TOP)/$@ rm -rf $(TOP)/$@
git submodule init $@/ git submodule init $@/
git submodule update --init --recursive $@/. git submodule update --init --recursive $@/.
......
...@@ -715,7 +715,7 @@ ${INSTALL_BINS}: $(addprefix ../,$(filter-out /%,${BINS})) $(filter /%,${BINS}) ...@@ -715,7 +715,7 @@ ${INSTALL_BINS}: $(addprefix ../,$(filter-out /%,${BINS})) $(filter /%,${BINS})
@echo "Installing binaries $^ to $(@D)" @echo "Installing binaries $^ to $(@D)"
$(INSTALL) -d -m$(BIN_PERMISSIONS) $^ $(@D) $(INSTALL) -d -m$(BIN_PERMISSIONS) $^ $(@D)
define license_install = define license_install
$1: $2 $1: $2
@echo "Installing license file $$^" @echo "Installing license file $$^"
$$(INSTALL) -d -m444 $$^ $$(@D) $$(INSTALL) -d -m444 $$^ $$(@D)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment