Change double quotes in Makefile.am to single quotes.
This was originally done in PR #84, except the change was made to Makefile.in instead of Makefile.am and was therefore reverted the next time the files were regenerated.
This commit is contained in:
66
Makefile.am
66
Makefile.am
@@ -64,39 +64,39 @@ info_TEXINFOS = doc/libffi.texi
|
|||||||
# values defined in terms of make variables, as is the case for CC and
|
# values defined in terms of make variables, as is the case for CC and
|
||||||
# friends when we are called from the top level Makefile.
|
# friends when we are called from the top level Makefile.
|
||||||
AM_MAKEFLAGS = \
|
AM_MAKEFLAGS = \
|
||||||
"AR_FLAGS=$(AR_FLAGS)" \
|
'AR_FLAGS=$(AR_FLAGS)' \
|
||||||
"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
|
'CC_FOR_BUILD=$(CC_FOR_BUILD)' \
|
||||||
"CFLAGS=$(CFLAGS)" \
|
'CFLAGS=$(CFLAGS)' \
|
||||||
"CXXFLAGS=$(CXXFLAGS)" \
|
'CXXFLAGS=$(CXXFLAGS)' \
|
||||||
"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
|
'CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)' \
|
||||||
"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
|
'CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)' \
|
||||||
"INSTALL=$(INSTALL)" \
|
'INSTALL=$(INSTALL)' \
|
||||||
"INSTALL_DATA=$(INSTALL_DATA)" \
|
'INSTALL_DATA=$(INSTALL_DATA)' \
|
||||||
"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
|
'INSTALL_PROGRAM=$(INSTALL_PROGRAM)' \
|
||||||
"INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
|
'INSTALL_SCRIPT=$(INSTALL_SCRIPT)' \
|
||||||
"JC1FLAGS=$(JC1FLAGS)" \
|
'JC1FLAGS=$(JC1FLAGS)' \
|
||||||
"LDFLAGS=$(LDFLAGS)" \
|
'LDFLAGS=$(LDFLAGS)' \
|
||||||
"LIBCFLAGS=$(LIBCFLAGS)" \
|
'LIBCFLAGS=$(LIBCFLAGS)' \
|
||||||
"LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
|
'LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)' \
|
||||||
"MAKE=$(MAKE)" \
|
'MAKE=$(MAKE)' \
|
||||||
"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
|
'MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)' \
|
||||||
"PICFLAG=$(PICFLAG)" \
|
'PICFLAG=$(PICFLAG)' \
|
||||||
"PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
|
'PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)' \
|
||||||
"RUNTESTFLAGS=$(RUNTESTFLAGS)" \
|
'RUNTESTFLAGS=$(RUNTESTFLAGS)' \
|
||||||
"SHELL=$(SHELL)" \
|
'SHELL=$(SHELL)' \
|
||||||
"exec_prefix=$(exec_prefix)" \
|
'exec_prefix=$(exec_prefix)' \
|
||||||
"infodir=$(infodir)" \
|
'infodir=$(infodir)' \
|
||||||
"libdir=$(libdir)" \
|
'libdir=$(libdir)' \
|
||||||
"mandir=$(mandir)" \
|
'mandir=$(mandir)' \
|
||||||
"prefix=$(prefix)" \
|
'prefix=$(prefix)' \
|
||||||
"AR=$(AR)" \
|
'AR=$(AR)' \
|
||||||
"AS=$(AS)" \
|
'AS=$(AS)' \
|
||||||
"CC=$(CC)" \
|
'CC=$(CC)' \
|
||||||
"CXX=$(CXX)" \
|
'CXX=$(CXX)' \
|
||||||
"LD=$(LD)" \
|
'LD=$(LD)' \
|
||||||
"NM=$(NM)" \
|
'NM=$(NM)' \
|
||||||
"RANLIB=$(RANLIB)" \
|
'RANLIB=$(RANLIB)' \
|
||||||
"DESTDIR=$(DESTDIR)"
|
'DESTDIR=$(DESTDIR)'
|
||||||
|
|
||||||
# Subdir rules rely on $(FLAGS_TO_PASS)
|
# Subdir rules rely on $(FLAGS_TO_PASS)
|
||||||
FLAGS_TO_PASS = $(AM_MAKEFLAGS)
|
FLAGS_TO_PASS = $(AM_MAKEFLAGS)
|
||||||
|
|||||||
Reference in New Issue
Block a user