Skip to content

Commit bcfb872

Browse files
author
Stefan
committed
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.
1 parent ba0899d commit bcfb872

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,8 @@ doc : $(TCCDOCS)
353353
# --------------------------------------------------------------------------
354354
# install
355355

356-
INSTALL = install -m644
357-
INSTALLBIN = install -m755 $(STRIP_$(CONFIG_strip))
356+
INSTALL = install -m 644
357+
INSTALLBIN = install -m 755 $(STRIP_$(CONFIG_strip))
358358
STRIP_yes = -s
359359

360360
LIBTCC1_W = $(filter %-win32-libtcc1.a %-wince-libtcc1.a,$(LIBTCC1_CROSS))

0 commit comments

Comments
 (0)