From bcfb872fd02aea39ef923a8b132b967e7786b743 Mon Sep 17 00:00:00 2001 From: Stefan Date: Fri, 3 Oct 2025 17:58:45 +0200 Subject: [PATCH] Makefile: Add space behind 'install -m' There are install shell scripts around, often derived from X11 like contained in glibc or Gash sources, which require to separate -m from its value. Therefore add a space behind 'install -m' in the Makefile. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7162633c..b5427d7f 100644 --- a/Makefile +++ b/Makefile @@ -353,8 +353,8 @@ doc : $(TCCDOCS) # -------------------------------------------------------------------------- # install -INSTALL = install -m644 -INSTALLBIN = install -m755 $(STRIP_$(CONFIG_strip)) +INSTALL = install -m 644 +INSTALLBIN = install -m 755 $(STRIP_$(CONFIG_strip)) STRIP_yes = -s LIBTCC1_W = $(filter %-win32-libtcc1.a %-wince-libtcc1.a,$(LIBTCC1_CROSS))