|
From: <sv...@va...> - 2005-08-30 18:47:40
|
Author: tom Date: 2005-08-30 19:47:35 +0100 (Tue, 30 Aug 2005) New Revision: 4589 Log: Quote the expansion of CC when invoking make for VEX. Fixes bug #111785. Modified: trunk/coregrind/Makefile.am Modified: trunk/coregrind/Makefile.am =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/coregrind/Makefile.am 2005-08-30 13:32:58 UTC (rev 4588) +++ trunk/coregrind/Makefile.am 2005-08-30 18:47:35 UTC (rev 4589) @@ -202,13 +202,13 @@ || rm -f $@ =20 @VEX_DIR@/libvex.a: @VEX_DIR@/priv/main/vex_svnversion.h - $(MAKE) -C @VEX_DIR@ CC=3D$(CC) libvex.a EXTRA_CFLAGS=3D"@ARCH_CORE_AM_= CFLAGS@ @PIE_AM_CFLAGS@" + $(MAKE) -C @VEX_DIR@ CC=3D"$(CC)" libvex.a EXTRA_CFLAGS=3D"@ARCH_CORE_A= M_CFLAGS@ @PIE_AM_CFLAGS@" =20 @VEX_DIR@/priv/main/vex_svnversion.h: $(wildcard @VEX_DIR@/.svn/entries) - $(MAKE) -C @VEX_DIR@ CC=3D$(CC) version + $(MAKE) -C @VEX_DIR@ CC=3D"$(CC)" version =20 clean-local: - $(MAKE) -C @VEX_DIR@ CC=3D$(CC) clean + $(MAKE) -C @VEX_DIR@ CC=3D"$(CC)" clean =20 MANUAL_DEPS =3D $(noinst_HEADERS) $(include_HEADERS) =20 |
|
From: Julian S. <js...@ac...> - 2005-08-30 19:51:25
|
> Quote the expansion of CC when invoking make for VEX. Fixes bug #111785. $(MAKE) -C @VEX_DIR@ is also done from m_dispatch and one other place (I forget where now). Worth a grep. J |
|
From: Tom H. <to...@co...> - 2005-08-30 21:08:29
|
In message <200...@ac...>
Julian Seward <js...@ac...> wrote:
> > Quote the expansion of CC when invoking make for VEX. Fixes bug #111785.
>
> $(MAKE) -C @VEX_DIR@ is also done from m_dispatch and one other
> place (I forget where now). Worth a grep.
I did grep, but I got the grep wrong and missed them... Fixed now.
Tom
--
Tom Hughes (to...@co...)
http://www.compton.nu/
|