mirror of
https://github.com/TinyCC/tinycc.git
synced 2025-11-16 04:24:45 +00:00
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.
This commit is contained in:
4
Makefile
4
Makefile
@@ -353,8 +353,8 @@ doc : $(TCCDOCS)
|
|||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
# install
|
# install
|
||||||
|
|
||||||
INSTALL = install -m644
|
INSTALL = install -m 644
|
||||||
INSTALLBIN = install -m755 $(STRIP_$(CONFIG_strip))
|
INSTALLBIN = install -m 755 $(STRIP_$(CONFIG_strip))
|
||||||
STRIP_yes = -s
|
STRIP_yes = -s
|
||||||
|
|
||||||
LIBTCC1_W = $(filter %-win32-libtcc1.a %-wince-libtcc1.a,$(LIBTCC1_CROSS))
|
LIBTCC1_W = $(filter %-win32-libtcc1.a %-wince-libtcc1.a,$(LIBTCC1_CROSS))
|
||||||
|
|||||||
Reference in New Issue
Block a user