pspp-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Directory restructuring


From: Ben Pfaff
Subject: Re: Directory restructuring
Date: Sun, 05 Feb 2006 08:06:19 -0800
User-agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.4 (gnu/linux)

John Darrington <address@hidden> 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: address@hidden
web: http://benpfaff.org




reply via email to

[Prev in Thread] Current Thread [Next in Thread]