John Darrington <[EMAIL PROTECTED]> writes:

>      Unfortunately I wasn't able to fully test it because your tree
>      doesn't build for me:
>
> Wierd.

Here's the fix.  q2c goes into the builddir, not the srcdir, so
the makefile was breaking for builds outside the source tree.

diff -up /home/blp/pspp/reorg/src/language/stats/Makefile.am\~ 
/home/blp/pspp/reorg/src/language/stats/Makefile.am
--- /home/blp/pspp/reorg/src/language/stats/Makefile.am~        2006-02-02 
20:37:45.000000000 -0800
+++ /home/blp/pspp/reorg/src/language/stats/Makefile.am 2006-02-05 
08:04:34.000000000 -0800
@@ -42,9 +42,9 @@ CLEANFILES=$(q_sources_c)
 
 
 
-$(q_sources_c): $(top_srcdir)/src/language/lexer/q2c$(EXEEXT)
+$(q_sources_c): $(top_builddir)/src/language/lexer/q2c$(EXEEXT)
 .q.c:
-       $(top_srcdir)/src/language/lexer/q2c $< $@
+       $(top_builddir)/src/language/lexer/q2c $< $@
 
 
 SUFFIXES = .q


-- 
Ben Pfaff 
email: [EMAIL PROTECTED]
web: http://benpfaff.org


_______________________________________________
pspp-dev mailing list
pspp-dev@gnu.org
http://lists.gnu.org/mailman/listinfo/pspp-dev

Reply via email to