Commit 65c0c692 authored by iker_martin's avatar iker_martin
Browse files

Removed null character in config file

parent efcd3fbc
...@@ -41,7 +41,7 @@ $(CONFIG) : $(BUILD_DIR)/$(CONFIG) ...@@ -41,7 +41,7 @@ $(CONFIG) : $(BUILD_DIR)/$(CONFIG)
$(BUILD_DIR)/$(CONFIG) : $(BUILD_DIR)/$(CONFIG) :
mkdir -p $(@D) mkdir -p $(@D)
@ echo -n "dir=\"" > $(BUILD_DIR)/$(CONFIG) @ echo -n "dir=\"" > $(BUILD_DIR)/$(CONFIG)
@ realpath -z $$(echo "$$(pwd)/..") >> $(BUILD_DIR)/$(CONFIG) @ realpath -z $$(echo "$$(pwd)/..") | tr -d '\0' >> $(BUILD_DIR)/$(CONFIG)
@ echo "\"" >> $(BUILD_DIR)/$(CONFIG) @ echo "\"" >> $(BUILD_DIR)/$(CONFIG)
# Actual target of the binary - depends on all .o files. # Actual target of the binary - depends on all .o files.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment