From 50fefd0575010377708a7fae8c18919a4244aa18 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Tue, 24 Apr 2012 18:17:52 +0000 Subject: [PATCH] build: fix the PS3 cross-build; variable name expansion was causing trouble. --- test/tutorial/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tutorial/Makefile.am b/test/tutorial/Makefile.am index 717141fa..3aba5e59 100644 --- a/test/tutorial/Makefile.am +++ b/test/tutorial/Makefile.am @@ -2,7 +2,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/src all-local: $(noinst_PROGRAMS) - for x in $(noinst_PROGRAMS); do \ + for x in $(noinst_PROGRAMS:%$(EXEEXT)=%); do \ test x$(MAKE_FSELF) = xno || make_fself $${x}$(EXEEXT) $${x}.self; \ done