Date: Sat, 29 Mar 2014 16:23:32 +0000 (UTC) From: Pawel Pekala <pawel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349558 - head/devel/dprog/files Message-ID: <201403291623.s2TGNWdR065634@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pawel Date: Sat Mar 29 16:23:31 2014 New Revision: 349558 URL: http://svnweb.freebsd.org/changeset/ports/349558 QAT: https://qat.redports.org/buildarchive/r349558/ Log: Fix rare build failure with multiple make jobs - make sure that main library is build before test programs which try link to it. Noticed by: swills Modified: head/devel/dprog/files/patch-Makefile.in Modified: head/devel/dprog/files/patch-Makefile.in ============================================================================== --- head/devel/dprog/files/patch-Makefile.in Sat Mar 29 16:20:08 2014 (r349557) +++ head/devel/dprog/files/patch-Makefile.in Sat Mar 29 16:23:31 2014 (r349558) @@ -1,5 +1,5 @@ --- Makefile.in.orig 2003-04-21 14:29:07.000000000 +0200 -+++ Makefile.in 2014-03-27 17:32:22.000000000 +0100 ++++ Makefile.in 2014-03-28 11:53:55.832875969 +0100 @@ -87,7 +87,7 @@ ARCH = `uname -mrs` DATE = `date '+%d %h %y'` @@ -18,6 +18,15 @@ cxx_dprog_test_SOURCES = cxx_dprog_test.cc symbol_checking_test_SOURCES = ast.hh ast.cc visitor.hh pretty_printer.hh pretty_printer.cc symbol_checking.hh symbol_checking.cc type_checking.hh type_checking.cc functions.hh functions.cc codegen.hh codegen.cc cxx_codegen.hh cxx_codegen.cc options.hh options.cc symbol_checking_test.cc +@@ -169,7 +169,7 @@ + codegen_test_LDFLAGS = + am_cxx_dprog_test_OBJECTS = cxx_dprog_test.$(OBJEXT) + cxx_dprog_test_OBJECTS = $(am_cxx_dprog_test_OBJECTS) +-cxx_dprog_test_DEPENDENCIES = ++cxx_dprog_test_DEPENDENCIES = $(lib_LIBRARIES) + cxx_dprog_test_LDFLAGS = + am_dprog_OBJECTS = lexer.$(OBJEXT) parser.$(OBJEXT) ast.$(OBJEXT) \ + pretty_printer.$(OBJEXT) range_checking.$(OBJEXT) \ @@ -315,6 +315,7 @@ @list='$(lib_LIBRARIES)'; for p in $$list; do \ if test -f $$p; then \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403291623.s2TGNWdR065634>