John Darrington <[EMAIL PROTECTED]> writes:
> If we're going to have to rc2, then it might be worth including a fix
> for the recently reported q2c vs .exe problem.
Thanks, I pushed the following to pre-0.6.1, which is in rc2.
Let me know if you see anything amiss:
commit 65eaf640ddf133276d3ea1b9c0fc263ee6139bdc
Author: Ben Pfaff <[EMAIL PROTECTED]>
Date: Fri Oct 3 20:53:51 2008 -0700
Append $(EXEEXT_FOR_BUILD) to output file name when building q2c.
Thanks to "Michel Boaventura" <[EMAIL PROTECTED]> for reporting
this problem and to John Darrington for assisting with the solution.
diff --git a/src/language/lexer/automake.mk b/src/language/lexer/automake.mk
index e0efbb6..0ce371a 100644
--- a/src/language/lexer/automake.mk
+++ b/src/language/lexer/automake.mk
@@ -17,7 +17,7 @@ EXTRA_DIST += src/language/lexer/q2c.c
src/language/lexer/q2c$(EXEEXT_FOR_BUILD):
$(top_srcdir)/src/language/lexer/q2c.c
@$(MKDIR_P) `dirname [EMAIL PROTECTED]
- $(CC_FOR_BUILD) $(top_srcdir)/src/language/lexer/q2c.c -o
$(top_builddir)/src/language/lexer/q2c
+ $(CC_FOR_BUILD) $(top_srcdir)/src/language/lexer/q2c.c -o
$(top_builddir)/src/language/lexer/q2c$(EXEEXT_FOR_BUILD)
CLEANFILES += src/language/lexer/q2c$(EXEEXT_FOR_BUILD)
--
Ben Pfaff
http://benpfaff.org
_______________________________________________
pspp-dev mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/pspp-dev