summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn-Mark Bell <jmb@netsurf-browser.org>2012-10-24 13:52:31 +0100
committerJohn-Mark Bell <jmb@netsurf-browser.org>2012-10-24 13:52:31 +0100
commit8cf8b9afe3f7061e00116c06340edc2b9eca877b (patch)
tree374e7f4f408c9b86cacf2b961ea13b9687cb9eb0
parent8d823369bad1be0e429f4c231dad4074974797a5 (diff)
downloadbuildsystem-8cf8b9afe3f7061e00116c06340edc2b9eca877b.tar.gz
buildsystem-8cf8b9afe3f7061e00116c06340edc2b9eca877b.tar.bz2
Add backslash
-rw-r--r--makefiles/Makefile.top2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefiles/Makefile.top b/makefiles/Makefile.top
index 4d6747d..bd7cddd 100644
--- a/makefiles/Makefile.top
+++ b/makefiles/Makefile.top
@@ -293,7 +293,7 @@ endef
define install_binary_or_normal_file
$(if $(and $(filter binary,$(COMPONENT_TYPE)), \
$(filter $(OUTPUT),$1)), \
- $(INSTALL) $(INSTALLFLAGS) -m 755 $1 $2,
+ $(INSTALL) $(INSTALLFLAGS) -m 755 $1 $2, \
$(INSTALL) $(INSTALLFLAGS) -m 644 $1 $2)
endef