On Sun, May 28, 2017 at 07:25:42AM +0200, John Darrington wrote: > On Sat, May 27, 2017 at 03:16:40PM -0700, Ben Pfaff wrote: > It's a dependency problem. Automake doesn't know that the library needs > to be built first, so with "make -j10" (my usual "make" command), the > build can happen out of order. > > To see this, run "make clean; make demo/demo". > > Here's a fix: > > diff -up /home/blp/pspp/spread-sheet-widget-0.0/Makefile.am\~ > /home/blp/pspp/spread-sheet-widget-0.0/Makefile.am > --- /home/blp/pspp/spread-sheet-widget-0.0/Makefile.am~ 2017-05-24 > 23:37:00.000000000 -0700 > +++ /home/blp/pspp/spread-sheet-widget-0.0/Makefile.am 2017-05-27 > 15:14:22.808649450 -0700 > @@ -33,7 +33,7 @@ include_HEADERS = config.h \ > src/ssw-cell.h > > bin_PROGRAMS = demo/demo > -demo_demo_LDADD = $(GTK3_LIBS) $(GLIB2_LIBS) -lm -lspread-sheet-widget > +demo_demo_LDADD = $(GTK3_LIBS) $(GLIB2_LIBS) -lm > libspread-sheet-widget.la > demo_demo_SOURCES = demo/main.c > > BUILT_SOURCES = \ > > Diff finished. Sat May 27 15:14:46 2017 > > Thanks. I applied this fix.
I haven't had a chance to actually try out the sheet branch, by the way--I'll try to do that this weekend. _______________________________________________ pspp-dev mailing list [email protected] https://lists.gnu.org/mailman/listinfo/pspp-dev
